Get this array's underlying field type. The field type contains information about both this array type's mutability and the storage type used for its elements.
(&self)
| 2216 | /// The field type contains information about both this array type's |
| 2217 | /// mutability and the storage type used for its elements. |
| 2218 | pub fn field_type(&self) -> FieldType { |
| 2219 | FieldType::from_wasm_field_type(self.engine(), &self.as_wasm_array_type().0) |
| 2220 | } |
| 2221 | |
| 2222 | /// Get this array type's mutability and whether its instances' elements can |
| 2223 | /// be updated or not. |
no test coverage detected