OrderRowMajor

Trait OrderRowMajor 

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

Source

const IS_ROW_MAJOR: bool = true

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§