Enum planus_types::ast::TypeKind
source · pub enum TypeKind {
Builtin(BuiltinType),
Vector {
inner_type: Box<Type>,
},
Array {
inner_type: Box<Type>,
size: u32,
},
Path(NamespacePath),
Invalid,
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
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