pub trait Matrix: Into<Conventional<Self::Element>> + Size {
type Element: Element;
// Required methods
fn nonzeros(&self) -> usize;
fn zero<S: Size>(_: S) -> Self;
}
Expand description
A matrix.
Required Associated Types§
Required Methods§
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.