pub struct TypeDef<'a> {
pub name: String,
pub align: Option<u64>,
pub items: Vec<(Type<'a>, usize)>,
}Expand description
QBE aggregate type definition
Fields§
§name: String§align: Option<u64>§items: Vec<(Type<'a>, usize)>Trait Implementations§
Source§impl<'a> Ord for TypeDef<'a>
impl<'a> Ord for TypeDef<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for TypeDef<'a>
impl<'a> PartialOrd for TypeDef<'a>
impl<'a> Eq for TypeDef<'a>
impl<'a> StructuralPartialEq for TypeDef<'a>
Auto Trait Implementations§
impl<'a> Freeze for TypeDef<'a>
impl<'a> RefUnwindSafe for TypeDef<'a>
impl<'a> Send for TypeDef<'a>
impl<'a> Sync for TypeDef<'a>
impl<'a> Unpin for TypeDef<'a>
impl<'a> UnwindSafe for TypeDef<'a>
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