pub enum CustomTypeKind {
Unit(CustomType<UnitField>),
Enum(CustomType<EnumField>),
Tuple(CustomType<TupleField>),
Struct(CustomType<StructField>),
}
Variants§
Unit(CustomType<UnitField>)
Enum(CustomType<EnumField>)
Tuple(CustomType<TupleField>)
Struct(CustomType<StructField>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CustomTypeKind
impl RefUnwindSafe for CustomTypeKind
impl Send for CustomTypeKind
impl Sync for CustomTypeKind
impl Unpin for CustomTypeKind
impl UnwindSafe for CustomTypeKind
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