pub enum ExpertStorageOrder {
ExpertMajor,
Interleaved,
}Expand description
Physical storage order declared by the model/package layout descriptor.
Variants§
ExpertMajor
All rows for expert 0, then all rows for expert 1, and so on.
Interleaved
Expert rows are interleaved and therefore cannot be represented by one range.
Trait Implementations§
Source§impl Clone for ExpertStorageOrder
impl Clone for ExpertStorageOrder
Source§fn clone(&self) -> ExpertStorageOrder
fn clone(&self) -> ExpertStorageOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExpertStorageOrder
Source§impl Debug for ExpertStorageOrder
impl Debug for ExpertStorageOrder
impl Eq for ExpertStorageOrder
Source§impl PartialEq for ExpertStorageOrder
impl PartialEq for ExpertStorageOrder
impl StructuralPartialEq for ExpertStorageOrder
Auto Trait Implementations§
impl Freeze for ExpertStorageOrder
impl RefUnwindSafe for ExpertStorageOrder
impl Send for ExpertStorageOrder
impl Sync for ExpertStorageOrder
impl Unpin for ExpertStorageOrder
impl UnsafeUnpin for ExpertStorageOrder
impl UnwindSafe for ExpertStorageOrder
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