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