pub enum BaseType {
Void,
Integer(Integer),
Float(Float),
Array(Array),
Struct(Struct),
Enum(Enum),
Function(Function),
}
Expand description
Variant for holding any kind of type.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BaseType
impl RefUnwindSafe for BaseType
impl Send for BaseType
impl Sync for BaseType
impl Unpin for BaseType
impl UnwindSafe for BaseType
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