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,
}
Expand description
Parses [attributes]? stringifier? readonly? attribute attributedtype identifier;
Fields§
§attributes: Option<ExtendedAttributeList<'a>>
§stringifier: Option<Stringifier>
§readonly: Option<ReadOnly>
§attribute: Attribute
§type_: AttributedType<'a>
§identifier: Identifier<'a>
§semi_colon: SemiColon
Trait Implementations§
Source§impl<'a> Clone for AttributeMixinMember<'a>
impl<'a> Clone for AttributeMixinMember<'a>
Source§fn clone(&self) -> AttributeMixinMember<'a>
fn clone(&self) -> AttributeMixinMember<'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 AttributeMixinMember<'a>
impl<'a> Debug for AttributeMixinMember<'a>
Source§impl<'a> From<AttributeMixinMember<'a>> for MixinMember<'a>
impl<'a> From<AttributeMixinMember<'a>> for MixinMember<'a>
Source§fn from(x: AttributeMixinMember<'a>) -> Self
fn from(x: AttributeMixinMember<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for AttributeMixinMember<'a>
impl<'a> Hash for AttributeMixinMember<'a>
Source§impl<'a> Ord for AttributeMixinMember<'a>
impl<'a> Ord for AttributeMixinMember<'a>
Source§fn cmp(&self, other: &AttributeMixinMember<'a>) -> Ordering
fn cmp(&self, other: &AttributeMixinMember<'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 AttributeMixinMember<'a>
impl<'a> Parse<'a> for AttributeMixinMember<'a>
Source§impl<'a> PartialEq for AttributeMixinMember<'a>
impl<'a> PartialEq for AttributeMixinMember<'a>
Source§impl<'a> PartialOrd for AttributeMixinMember<'a>
impl<'a> PartialOrd for AttributeMixinMember<'a>
impl<'a> Eq for AttributeMixinMember<'a>
impl<'a> StructuralPartialEq for AttributeMixinMember<'a>
Auto Trait Implementations§
impl<'a> Freeze for AttributeMixinMember<'a>
impl<'a> RefUnwindSafe for AttributeMixinMember<'a>
impl<'a> Send for AttributeMixinMember<'a>
impl<'a> Sync for AttributeMixinMember<'a>
impl<'a> Unpin for AttributeMixinMember<'a>
impl<'a> UnwindSafe for AttributeMixinMember<'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