pub trait NamedArrayOfAffineMaps:
From<MlirAttribute>
+ IAttributeNamed
+ Sized {
// Provided methods
fn new(context: &Context, elements: &[AffineMap]) -> Self { ... }
fn from_checked(attr: MlirAttribute) -> Self { ... }
fn as_array(&self) -> Array { ... }
fn as_affine_maps(&self) -> Vec<AffineMap> { ... }
fn num_elements(&self) -> isize { ... }
}
Provided Methods§
fn new(context: &Context, elements: &[AffineMap]) -> Self
fn from_checked(attr: MlirAttribute) -> Self
fn as_array(&self) -> Array
fn as_affine_maps(&self) -> Vec<AffineMap>
fn num_elements(&self) -> isize
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.