[][src]Struct weedle::interface::AttributeInterfaceMember

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,
}

Parses [attributes]? (stringifier|inherit|static)? readonly? attribute attributedtype identifier;

Fields

attributes: Option<ExtendedAttributeList<'a>>modifier: Option<StringifierOrInheritOrStatic>readonly: Option<ReadOnly>attribute: Attributetype_: AttributedType<'a>identifier: Identifier<'a>semi_colon: SemiColon

Trait Implementations

impl<'a> Clone for AttributeInterfaceMember<'a>[src]

impl<'a> Debug for AttributeInterfaceMember<'a>[src]

impl<'a> Eq for AttributeInterfaceMember<'a>[src]

impl<'a> From<AttributeInterfaceMember<'a>> for InterfaceMember<'a>[src]

impl<'a> Hash for AttributeInterfaceMember<'a>[src]

impl<'a> Ord for AttributeInterfaceMember<'a>[src]

impl<'a> Parse<'a> for AttributeInterfaceMember<'a>[src]

impl<'a> PartialEq<AttributeInterfaceMember<'a>> for AttributeInterfaceMember<'a>[src]

impl<'a> PartialOrd<AttributeInterfaceMember<'a>> for AttributeInterfaceMember<'a>[src]

impl<'a> StructuralEq for AttributeInterfaceMember<'a>[src]

impl<'a> StructuralPartialEq for AttributeInterfaceMember<'a>[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.