pub enum FieldTypeSpec {
Bool(FieldMetadata<bool>),
U16(FieldMetadata<u16>),
U64(FieldMetadata<u64>),
I64(FieldMetadata<i64>),
F64(FieldMetadata<f64>),
String(FieldMetadata<String>),
}Variants§
Bool(FieldMetadata<bool>)
U16(FieldMetadata<u16>)
U64(FieldMetadata<u64>)
I64(FieldMetadata<i64>)
F64(FieldMetadata<f64>)
String(FieldMetadata<String>)
Trait Implementations§
Source§impl Clone for FieldTypeSpec
impl Clone for FieldTypeSpec
Source§fn clone(&self) -> FieldTypeSpec
fn clone(&self) -> FieldTypeSpec
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 moreAuto Trait Implementations§
impl Freeze for FieldTypeSpec
impl !RefUnwindSafe for FieldTypeSpec
impl !Send for FieldTypeSpec
impl !Sync for FieldTypeSpec
impl Unpin for FieldTypeSpec
impl UnsafeUnpin for FieldTypeSpec
impl !UnwindSafe for FieldTypeSpec
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