pub struct GenericAssociationType {
pub type_name: Node<TypeName>,
pub expression: Box<Node<Expression>>,
}
Expand description
Type match case in a generic selection expression
(C11 6.5.1.1)
Fields§
§type_name: Node<TypeName>
§expression: Box<Node<Expression>>
Trait Implementations§
Source§impl Clone for GenericAssociationType
impl Clone for GenericAssociationType
Source§fn clone(&self) -> GenericAssociationType
fn clone(&self) -> GenericAssociationType
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 GenericAssociationType
impl Debug for GenericAssociationType
Source§impl PartialEq for GenericAssociationType
impl PartialEq for GenericAssociationType
impl StructuralPartialEq for GenericAssociationType
Auto Trait Implementations§
impl Freeze for GenericAssociationType
impl RefUnwindSafe for GenericAssociationType
impl Send for GenericAssociationType
impl Sync for GenericAssociationType
impl Unpin for GenericAssociationType
impl UnwindSafe for GenericAssociationType
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