#[repr(u8)]pub enum FpZipType {
Float = 0,
Double = 1,
}Expand description
Type of floating-point data stored in the compressed stream.
Variants§
Float = 0
32-bit IEEE 754 single-precision float.
Double = 1
64-bit IEEE 754 double-precision float.
Trait Implementations§
impl Copy for FpZipType
impl Eq for FpZipType
impl StructuralPartialEq for FpZipType
Auto Trait Implementations§
impl Freeze for FpZipType
impl RefUnwindSafe for FpZipType
impl Send for FpZipType
impl Sync for FpZipType
impl Unpin for FpZipType
impl UnsafeUnpin for FpZipType
impl UnwindSafe for FpZipType
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