pub struct SimplePacking {
pub ref_val: f32,
pub exp: i16,
pub dec: i16,
pub num_bits: u8,
}
Fields§
§ref_val: f32
Reference value (R) (IEEE 32-bit floating-point value).
exp: i16
Binary scale factor (E).
dec: i16
Decimal scale factor (D).
num_bits: u8
Number of bits used for each packed value for simple packing, or for each group reference value for complex packing or spatial differencing.
Trait Implementations§
Source§impl Debug for SimplePacking
impl Debug for SimplePacking
Source§impl Dump for SimplePacking
impl Dump for SimplePacking
Source§impl PartialEq for SimplePacking
impl PartialEq for SimplePacking
Source§impl TryFromSlice for SimplePacking
impl TryFromSlice for SimplePacking
impl StructuralPartialEq for SimplePacking
Auto Trait Implementations§
impl Freeze for SimplePacking
impl RefUnwindSafe for SimplePacking
impl Send for SimplePacking
impl Sync for SimplePacking
impl Unpin for SimplePacking
impl UnwindSafe for SimplePacking
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