pub enum Value {
Bool(bool),
U64(u64),
I64(i64),
F64(f64),
Flags(u64),
Fields(u64),
DateTime(i64),
Unavailable,
}Expand description
Heap-free decoded value.
Variants§
Bool(bool)
U64(u64)
I64(i64)
F64(f64)
Flags(u64)
§13.2 flag set: raw mask; iterate names with flag_names.
Fields(u64)
§13 packed sub-fields: raw window; extract with field_value.
DateTime(i64)
§8.5 epoch value (seconds or millis per the point’s encoding).
§8.4 sentinel hit. The meaning str borrows the descriptor table.
Implementations§
Trait Implementations§
impl Copy for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnsafeUnpin for Value
impl UnwindSafe for Value
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