pub enum GenericAssociation {
Type(Node<GenericAssociationType>),
Default(Box<Node<Expression>>),
}
Expand description
Single element of a generic selection expression
(C11 6.5.1.1)
Variants§
Type(Node<GenericAssociationType>)
Default(Box<Node<Expression>>)
Trait Implementations§
Source§impl Clone for GenericAssociation
impl Clone for GenericAssociation
Source§fn clone(&self) -> GenericAssociation
fn clone(&self) -> GenericAssociation
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 GenericAssociation
impl Debug for GenericAssociation
Source§impl PartialEq for GenericAssociation
impl PartialEq for GenericAssociation
impl StructuralPartialEq for GenericAssociation
Auto Trait Implementations§
impl Freeze for GenericAssociation
impl RefUnwindSafe for GenericAssociation
impl Send for GenericAssociation
impl Sync for GenericAssociation
impl Unpin for GenericAssociation
impl UnwindSafe for GenericAssociation
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