pub struct AttributeInterfaceMember<'a> {
    pub attributes: Option<ExtendedAttributeList<'a>>,
    pub modifier: Option<StringifierOrInheritOrStatic>,
    pub readonly: Option<ReadOnly>,
    pub attribute: Attribute,
    pub type_: AttributedType<'a>,
    pub identifier: Identifier<'a>,
    pub semi_colon: SemiColon,
}Expand description
Parses [attributes]? (stringifier|inherit|static)? readonly? attribute attributedtype identifier;
Fields§
§attributes: Option<ExtendedAttributeList<'a>>§modifier: Option<StringifierOrInheritOrStatic>§readonly: Option<ReadOnly>§attribute: Attribute§type_: AttributedType<'a>§identifier: Identifier<'a>§semi_colon: SemiColonTrait Implementations§
Source§impl<'a> Clone for AttributeInterfaceMember<'a>
 
impl<'a> Clone for AttributeInterfaceMember<'a>
Source§fn clone(&self) -> AttributeInterfaceMember<'a>
 
fn clone(&self) -> AttributeInterfaceMember<'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 AttributeInterfaceMember<'a>
 
impl<'a> Debug for AttributeInterfaceMember<'a>
Source§impl<'a> From<AttributeInterfaceMember<'a>> for InterfaceMember<'a>
 
impl<'a> From<AttributeInterfaceMember<'a>> for InterfaceMember<'a>
Source§fn from(x: AttributeInterfaceMember<'a>) -> Self
 
fn from(x: AttributeInterfaceMember<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for AttributeInterfaceMember<'a>
 
impl<'a> Hash for AttributeInterfaceMember<'a>
Source§impl<'a> Ord for AttributeInterfaceMember<'a>
 
impl<'a> Ord for AttributeInterfaceMember<'a>
Source§fn cmp(&self, other: &AttributeInterfaceMember<'a>) -> Ordering
 
fn cmp(&self, other: &AttributeInterfaceMember<'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 AttributeInterfaceMember<'a>
 
impl<'a> Parse<'a> for AttributeInterfaceMember<'a>
Source§impl<'a> PartialEq for AttributeInterfaceMember<'a>
 
impl<'a> PartialEq for AttributeInterfaceMember<'a>
Source§fn eq(&self, other: &AttributeInterfaceMember<'a>) -> bool
 
fn eq(&self, other: &AttributeInterfaceMember<'a>) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for AttributeInterfaceMember<'a>
 
impl<'a> PartialOrd for AttributeInterfaceMember<'a>
impl<'a> Eq for AttributeInterfaceMember<'a>
impl<'a> StructuralPartialEq for AttributeInterfaceMember<'a>
Auto Trait Implementations§
impl<'a> Freeze for AttributeInterfaceMember<'a>
impl<'a> RefUnwindSafe for AttributeInterfaceMember<'a>
impl<'a> Send for AttributeInterfaceMember<'a>
impl<'a> Sync for AttributeInterfaceMember<'a>
impl<'a> Unpin for AttributeInterfaceMember<'a>
impl<'a> UnwindSafe for AttributeInterfaceMember<'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