#[repr(u8)]pub enum Version {
Classic = 1,
Offset64Bit = 2,
}Expand description
NetCDF-3 file versions (classic or 64-bit offset)
Variants§
Classic = 1
Classic format (use i32 for the begin offsets)
Offset64Bit = 2
64-bit offset format (use i64 for the begin offsets)
Trait Implementations§
impl Eq for Version
impl StructuralPartialEq for Version
Auto Trait Implementations§
impl Freeze for Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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