pub trait MatrixKind {
type Ref<'a, E: Entity>: Copy;
type Mut<'a, E: Entity>;
type Own<E: Entity>;
}
Expand description
Trait for describing the view and owning variants of a given matrix type tag.
Required Associated Types§
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.