pub enum DataLayout {
RowMajor,
ColumnMajor,
Other,
}
Expand description
The data layout used for storing the 2 dimensional data of a MatrixView.
Variants§
Trait Implementations§
Source§impl Clone for DataLayout
impl Clone for DataLayout
Source§fn clone(&self) -> DataLayout
fn clone(&self) -> DataLayout
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DataLayout
impl Debug for DataLayout
Source§impl Hash for DataLayout
impl Hash for DataLayout
Source§impl Ord for DataLayout
impl Ord for DataLayout
Source§fn cmp(&self, other: &DataLayout) -> Ordering
fn cmp(&self, other: &DataLayout) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DataLayout
impl PartialEq for DataLayout
Source§impl PartialOrd for DataLayout
impl PartialOrd for DataLayout
impl Eq for DataLayout
impl StructuralPartialEq for DataLayout
Auto Trait Implementations§
impl Freeze for DataLayout
impl RefUnwindSafe for DataLayout
impl Send for DataLayout
impl Sync for DataLayout
impl Unpin for DataLayout
impl UnwindSafe for DataLayout
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more