pub enum TypeAggregate {
    Fields(Box<Fields>),
    Array(Box<Type>, Int),
}Variants§
Trait Implementations§
Source§impl Clone for TypeAggregate
 
impl Clone for TypeAggregate
Source§fn clone(&self) -> TypeAggregate
 
fn clone(&self) -> TypeAggregate
Returns a copy 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 moreSource§impl Debug for TypeAggregate
 
impl Debug for TypeAggregate
Source§impl Display for TypeAggregate
 
impl Display for TypeAggregate
Source§impl Hash for TypeAggregate
 
impl Hash for TypeAggregate
Source§impl Ord for TypeAggregate
 
impl Ord for TypeAggregate
Source§fn cmp(&self, other: &TypeAggregate) -> Ordering
 
fn cmp(&self, other: &TypeAggregate) -> Ordering
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 PartialEq for TypeAggregate
 
impl PartialEq for TypeAggregate
Source§impl PartialOrd for TypeAggregate
 
impl PartialOrd for TypeAggregate
impl Eq for TypeAggregate
impl StructuralPartialEq for TypeAggregate
Auto Trait Implementations§
impl Freeze for TypeAggregate
impl RefUnwindSafe for TypeAggregate
impl Send for TypeAggregate
impl Sync for TypeAggregate
impl Unpin for TypeAggregate
impl UnwindSafe for TypeAggregate
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