pub enum TypeName {
Elementary(ElementaryTypeName),
UserDefined(IdentifierPath),
Array(Box<TypeName>, Option<Box<Expression>>),
Mapping(MappingType),
Function(FunctionTypeName),
}
Variants§
Elementary(ElementaryTypeName)
UserDefined(IdentifierPath)
Array(Box<TypeName>, Option<Box<Expression>>)
Mapping(MappingType)
Function(FunctionTypeName)
Trait Implementations§
impl StructuralPartialEq for TypeName
Auto Trait Implementations§
impl Freeze for TypeName
impl RefUnwindSafe for TypeName
impl Send for TypeName
impl Sync for TypeName
impl Unpin for TypeName
impl UnwindSafe for TypeName
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