pub enum ValueOrder {
LogicalRowMajor,
GribScanOrder,
}Expand description
Order of values supplied to field builders.
Variants§
LogicalRowMajor
Logical row-major order matching grib-reader ndarray output.
GribScanOrder
Native GRIB scan order; skips the logical-to-scan reordering pass.
Trait Implementations§
Source§impl Clone for ValueOrder
impl Clone for ValueOrder
Source§fn clone(&self) -> ValueOrder
fn clone(&self) -> ValueOrder
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 ValueOrder
impl Debug for ValueOrder
Source§impl Default for ValueOrder
impl Default for ValueOrder
Source§fn default() -> ValueOrder
fn default() -> ValueOrder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ValueOrder
impl PartialEq for ValueOrder
impl Copy for ValueOrder
impl Eq for ValueOrder
impl StructuralPartialEq for ValueOrder
Auto Trait Implementations§
impl Freeze for ValueOrder
impl RefUnwindSafe for ValueOrder
impl Send for ValueOrder
impl Sync for ValueOrder
impl Unpin for ValueOrder
impl UnsafeUnpin for ValueOrder
impl UnwindSafe for ValueOrder
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