pub enum FieldValue {
Text(String),
Numeric(f64),
Integer(i32),
Boolean(Option<bool>),
Date(Date<Utc>),
DateTime(DateTime<Utc>),
Unknown(Vec<u8>),
}
Variants§
Text(String)
Numeric(f64)
Integer(i32)
Boolean(Option<bool>)
Date(Date<Utc>)
DateTime(DateTime<Utc>)
Unknown(Vec<u8>)
Trait Implementations§
Source§impl Debug for FieldValue
impl Debug for FieldValue
Source§impl PartialEq for FieldValue
impl PartialEq for FieldValue
impl StructuralPartialEq for FieldValue
Auto Trait Implementations§
impl Freeze for FieldValue
impl RefUnwindSafe for FieldValue
impl Send for FieldValue
impl Sync for FieldValue
impl Unpin for FieldValue
impl UnwindSafe for FieldValue
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