Trait OrderColumnMajor

Source
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§

Source

const IS_ROW_MAJOR: bool = false

True for row-major

Provided Methods§

Source

fn order_str() -> &'static str

Name of order

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.

Implementors§