pub enum TypeKind {
Primitive(PrimitiveType),
Composite,
Enum(PrimitiveType),
Set(PrimitiveType),
}Expand description
Type kind enumeration.
Variants§
Primitive(PrimitiveType)
Primitive type.
Composite
Composite type.
Enum(PrimitiveType)
Enum type with encoding.
Set(PrimitiveType)
Set (bitfield) type with encoding.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeKind
impl RefUnwindSafe for TypeKind
impl Send for TypeKind
impl Sync for TypeKind
impl Unpin for TypeKind
impl UnwindSafe for TypeKind
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