pub enum AggregateKind {
Tuple,
Array(Ty),
Struct(HirId, Option<Symbol>),
Closure(u32),
}Expand description
Aggregate construction kind
Variants§
Tuple
Tuple
Array(Ty)
Array [T; N]
Struct(HirId, Option<Symbol>)
Struct (HirId, optional variant name for enum variant struct literals)
Closure(u32)
Closure environment (closure id)
Trait Implementations§
Source§impl Clone for AggregateKind
impl Clone for AggregateKind
Source§fn clone(&self) -> AggregateKind
fn clone(&self) -> AggregateKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AggregateKind
impl RefUnwindSafe for AggregateKind
impl Send for AggregateKind
impl Sync for AggregateKind
impl Unpin for AggregateKind
impl UnwindSafe for AggregateKind
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