pub enum TableEntry {
Show 17 variants
Bool(bool),
ShortShortInt(i8),
ShortShortUint(u8),
ShortInt(i16),
ShortUint(u16),
LongInt(i32),
LongUint(u32),
LongLongInt(i64),
LongLongUint(u64),
Float(f32),
Double(f64),
DecimalValue(u8, u32),
LongString(String),
FieldArray(Vec<TableEntry>),
Timestamp(u64),
FieldTable(HashMap<String, TableEntry>),
Void,
}
Variants§
Bool(bool)
ShortShortInt(i8)
ShortShortUint(u8)
ShortInt(i16)
ShortUint(u16)
LongInt(i32)
LongUint(u32)
LongLongInt(i64)
LongLongUint(u64)
Float(f32)
Double(f64)
DecimalValue(u8, u32)
LongString(String)
FieldArray(Vec<TableEntry>)
Timestamp(u64)
FieldTable(HashMap<String, TableEntry>)
Void
Trait Implementations§
Source§impl Clone for TableEntry
impl Clone for TableEntry
Source§fn clone(&self) -> TableEntry
fn clone(&self) -> TableEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TableEntry
impl Debug for TableEntry
Source§impl PartialEq for TableEntry
impl PartialEq for TableEntry
impl StructuralPartialEq for TableEntry
Auto Trait Implementations§
impl Freeze for TableEntry
impl RefUnwindSafe for TableEntry
impl Send for TableEntry
impl Sync for TableEntry
impl Unpin for TableEntry
impl UnwindSafe for TableEntry
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