pub struct ConstructorInterfaceMember<'a> {
    pub attributes: Option<ExtendedAttributeList<'a>>,
    pub constructor: Constructor,
    pub args: Parenthesized<ArgumentList<'a>>,
    pub semi_colon: SemiColon,
}Expand description
Parses [attributes]? constructor(( args ));
(( )) means ( ) chars
Fields§
§attributes: Option<ExtendedAttributeList<'a>>§constructor: Constructor§args: Parenthesized<ArgumentList<'a>>§semi_colon: SemiColonTrait Implementations§
Source§impl<'a> Clone for ConstructorInterfaceMember<'a>
 
impl<'a> Clone for ConstructorInterfaceMember<'a>
Source§fn clone(&self) -> ConstructorInterfaceMember<'a>
 
fn clone(&self) -> ConstructorInterfaceMember<'a>
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<'a> Debug for ConstructorInterfaceMember<'a>
 
impl<'a> Debug for ConstructorInterfaceMember<'a>
Source§impl<'a> From<ConstructorInterfaceMember<'a>> for InterfaceMember<'a>
 
impl<'a> From<ConstructorInterfaceMember<'a>> for InterfaceMember<'a>
Source§fn from(x: ConstructorInterfaceMember<'a>) -> Self
 
fn from(x: ConstructorInterfaceMember<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for ConstructorInterfaceMember<'a>
 
impl<'a> Hash for ConstructorInterfaceMember<'a>
Source§impl<'a> Ord for ConstructorInterfaceMember<'a>
 
impl<'a> Ord for ConstructorInterfaceMember<'a>
Source§fn cmp(&self, other: &ConstructorInterfaceMember<'a>) -> Ordering
 
fn cmp(&self, other: &ConstructorInterfaceMember<'a>) -> 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<'a> Parse<'a> for ConstructorInterfaceMember<'a>
 
impl<'a> Parse<'a> for ConstructorInterfaceMember<'a>
Source§impl<'a> PartialEq for ConstructorInterfaceMember<'a>
 
impl<'a> PartialEq for ConstructorInterfaceMember<'a>
Source§fn eq(&self, other: &ConstructorInterfaceMember<'a>) -> bool
 
fn eq(&self, other: &ConstructorInterfaceMember<'a>) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for ConstructorInterfaceMember<'a>
 
impl<'a> PartialOrd for ConstructorInterfaceMember<'a>
impl<'a> Eq for ConstructorInterfaceMember<'a>
impl<'a> StructuralPartialEq for ConstructorInterfaceMember<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConstructorInterfaceMember<'a>
impl<'a> RefUnwindSafe for ConstructorInterfaceMember<'a>
impl<'a> Send for ConstructorInterfaceMember<'a>
impl<'a> Sync for ConstructorInterfaceMember<'a>
impl<'a> Unpin for ConstructorInterfaceMember<'a>
impl<'a> UnwindSafe for ConstructorInterfaceMember<'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