[][src]Struct weedle::mixin::AttributeMixinMember

pub struct AttributeMixinMember<'a> {
    pub attributes: Option<ExtendedAttributeList<'a>>,
    pub stringifier: Option<Stringifier>,
    pub readonly: Option<ReadOnly>,
    pub attribute: Attribute,
    pub type_: AttributedType<'a>,
    pub identifier: Identifier<'a>,
    pub semi_colon: SemiColon,
}

Parses [attributes]? stringifier? readonly? attribute attributedtype identifier;

Fields

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

Trait Implementations

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

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

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

impl<'a> From<AttributeMixinMember<'a>> for MixinMember<'a>[src]

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

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

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

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

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

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

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

Auto Trait Implementations

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.