pub enum DataTypeVariant {
Enumeration,
Structure,
Primitive,
}Expand description
Variant of a data type.
Variants§
Enumeration
Data type is an enumeration.
Structure
Data type is a structure.
Primitive
Data type is some primitive.
Auto Trait Implementations§
impl Freeze for DataTypeVariant
impl RefUnwindSafe for DataTypeVariant
impl Send for DataTypeVariant
impl Sync for DataTypeVariant
impl Unpin for DataTypeVariant
impl UnsafeUnpin for DataTypeVariant
impl UnwindSafe for DataTypeVariant
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