pub enum FieldValue {
ObjectId(Option<Id>),
Boolean(bool),
Char(u16),
Float(f32),
Double(f64),
Byte(i8),
Short(i16),
Int(i32),
Long(i64),
}
Variants§
ObjectId(Option<Id>)
Boolean(bool)
Char(u16)
Float(f32)
Double(f64)
Byte(i8)
Short(i16)
Int(i32)
Long(i64)
Trait Implementations§
Source§impl Clone for FieldValue
impl Clone for FieldValue
Source§fn clone(&self) -> FieldValue
fn clone(&self) -> FieldValue
Returns a copy 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 FieldValue
impl Debug for FieldValue
impl Copy 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