pub trait OrderColumnMajor: Order {
const IS_ROW_MAJOR: bool = false;
// Provided method
fn order_str() -> &'static str { ... }
}Expand description
Column-major ordering of scalars in buffer of matrix.
Provided Associated Constants§
Sourceconst IS_ROW_MAJOR: bool = false
const IS_ROW_MAJOR: bool = false
True for row-major
Provided 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.