pub enum TypeDefKind {
Record(Record),
Variant(Variant),
List(Type),
Pointer(Type),
ConstPointer(Type),
PushBuffer(Type),
PullBuffer(Type),
Type(Type),
}Variants§
Record(Record)
Variant(Variant)
List(Type)
Pointer(Type)
ConstPointer(Type)
PushBuffer(Type)
PullBuffer(Type)
Type(Type)
Auto Trait Implementations§
impl Freeze for TypeDefKind
impl RefUnwindSafe for TypeDefKind
impl Send for TypeDefKind
impl Sync for TypeDefKind
impl Unpin for TypeDefKind
impl UnwindSafe for TypeDefKind
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