pub struct ExtendedAttributeNamedArgList<'a> {
pub lhs_identifier: Identifier<'a>,
pub assign: Assign,
pub rhs_identifier: Identifier<'a>,
pub args: Parenthesized<ArgumentList<'a>>,
}
Expand description
Parses a named argument list. Ex: NamedConstructor=Image((DOMString src))
(( )) means ( ) chars
Fields§
§lhs_identifier: Identifier<'a>
§assign: Assign
§rhs_identifier: Identifier<'a>
§args: Parenthesized<ArgumentList<'a>>
Trait Implementations§
Source§impl<'a> Clone for ExtendedAttributeNamedArgList<'a>
impl<'a> Clone for ExtendedAttributeNamedArgList<'a>
Source§fn clone(&self) -> ExtendedAttributeNamedArgList<'a>
fn clone(&self) -> ExtendedAttributeNamedArgList<'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 ExtendedAttributeNamedArgList<'a>
impl<'a> Debug for ExtendedAttributeNamedArgList<'a>
Source§impl<'a> From<ExtendedAttributeNamedArgList<'a>> for ExtendedAttribute<'a>
impl<'a> From<ExtendedAttributeNamedArgList<'a>> for ExtendedAttribute<'a>
Source§fn from(x: ExtendedAttributeNamedArgList<'a>) -> Self
fn from(x: ExtendedAttributeNamedArgList<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for ExtendedAttributeNamedArgList<'a>
impl<'a> Hash for ExtendedAttributeNamedArgList<'a>
Source§impl<'a> Ord for ExtendedAttributeNamedArgList<'a>
impl<'a> Ord for ExtendedAttributeNamedArgList<'a>
Source§fn cmp(&self, other: &ExtendedAttributeNamedArgList<'a>) -> Ordering
fn cmp(&self, other: &ExtendedAttributeNamedArgList<'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 ExtendedAttributeNamedArgList<'a>
impl<'a> Parse<'a> for ExtendedAttributeNamedArgList<'a>
Source§impl<'a> PartialEq for ExtendedAttributeNamedArgList<'a>
impl<'a> PartialEq for ExtendedAttributeNamedArgList<'a>
Source§fn eq(&self, other: &ExtendedAttributeNamedArgList<'a>) -> bool
fn eq(&self, other: &ExtendedAttributeNamedArgList<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'a> PartialOrd for ExtendedAttributeNamedArgList<'a>
impl<'a> PartialOrd for ExtendedAttributeNamedArgList<'a>
impl<'a> Eq for ExtendedAttributeNamedArgList<'a>
impl<'a> StructuralPartialEq for ExtendedAttributeNamedArgList<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExtendedAttributeNamedArgList<'a>
impl<'a> RefUnwindSafe for ExtendedAttributeNamedArgList<'a>
impl<'a> Send for ExtendedAttributeNamedArgList<'a>
impl<'a> Sync for ExtendedAttributeNamedArgList<'a>
impl<'a> Unpin for ExtendedAttributeNamedArgList<'a>
impl<'a> UnwindSafe for ExtendedAttributeNamedArgList<'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