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