pub enum EseValue {
}Expand description
A decoded ESE column value.
Variants§
Null
Bool(bool)
U8(u8)
I16(i16)
I32(i32)
I64(i64)
U16(u16)
U32(u32)
U64(u64)
F32(f32)
F64(f64)
DateTime(f64)
OLE Automation Date: days since 1899-12-30 as a floating-point number.
Binary(Vec<u8>)
Text(String)
Guid([u8; 16])
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EseValue
impl RefUnwindSafe for EseValue
impl Send for EseValue
impl Sync for EseValue
impl Unpin for EseValue
impl UnsafeUnpin for EseValue
impl UnwindSafe for EseValue
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