pub enum BasicField {
Bool(bool),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
}Variants§
Auto Trait Implementations§
impl Freeze for BasicField
impl RefUnwindSafe for BasicField
impl Send for BasicField
impl Sync for BasicField
impl Unpin for BasicField
impl UnsafeUnpin for BasicField
impl UnwindSafe for BasicField
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