pub enum ItdValue {
Present,
Plain(String),
Gzipped(Vec<u8>),
}Expand description
A stored intraday value: either a presence marker, raw gzipped bytes, or plain text (e.g. “N/A”).
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ItdValue
impl RefUnwindSafe for ItdValue
impl Send for ItdValue
impl Sync for ItdValue
impl Unpin for ItdValue
impl UnsafeUnpin for ItdValue
impl UnwindSafe for ItdValue
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