pub enum FieldVal {
Bool(bool),
Int(i64),
Float(f32),
Str(String),
Bytes(Vec<u8>),
}Expand description
A typed field value in a StructMap.
Variants§
Trait Implementations§
impl StructuralPartialEq for FieldVal
Auto Trait Implementations§
impl Freeze for FieldVal
impl RefUnwindSafe for FieldVal
impl Send for FieldVal
impl Sync for FieldVal
impl Unpin for FieldVal
impl UnsafeUnpin for FieldVal
impl UnwindSafe for FieldVal
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