pub struct ExtendedAttributeIdent<'a> {
pub lhs_identifier: Identifier<'a>,
pub assign: Assign,
pub rhs: IdentifierOrString<'a>,
}
Expand description
Parses an attribute with an identifier. Ex: PutForwards=name
Fields§
§lhs_identifier: Identifier<'a>
§assign: Assign
§rhs: IdentifierOrString<'a>
Trait Implementations§
Source§impl<'a> Clone for ExtendedAttributeIdent<'a>
impl<'a> Clone for ExtendedAttributeIdent<'a>
Source§fn clone(&self) -> ExtendedAttributeIdent<'a>
fn clone(&self) -> ExtendedAttributeIdent<'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 ExtendedAttributeIdent<'a>
impl<'a> Debug for ExtendedAttributeIdent<'a>
Source§impl<'a> From<ExtendedAttributeIdent<'a>> for ExtendedAttribute<'a>
impl<'a> From<ExtendedAttributeIdent<'a>> for ExtendedAttribute<'a>
Source§fn from(x: ExtendedAttributeIdent<'a>) -> Self
fn from(x: ExtendedAttributeIdent<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for ExtendedAttributeIdent<'a>
impl<'a> Hash for ExtendedAttributeIdent<'a>
Source§impl<'a> Ord for ExtendedAttributeIdent<'a>
impl<'a> Ord for ExtendedAttributeIdent<'a>
Source§fn cmp(&self, other: &ExtendedAttributeIdent<'a>) -> Ordering
fn cmp(&self, other: &ExtendedAttributeIdent<'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 ExtendedAttributeIdent<'a>
impl<'a> Parse<'a> for ExtendedAttributeIdent<'a>
Source§impl<'a> PartialEq for ExtendedAttributeIdent<'a>
impl<'a> PartialEq for ExtendedAttributeIdent<'a>
Source§impl<'a> PartialOrd for ExtendedAttributeIdent<'a>
impl<'a> PartialOrd for ExtendedAttributeIdent<'a>
impl<'a> Copy for ExtendedAttributeIdent<'a>
impl<'a> Eq for ExtendedAttributeIdent<'a>
impl<'a> StructuralPartialEq for ExtendedAttributeIdent<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExtendedAttributeIdent<'a>
impl<'a> RefUnwindSafe for ExtendedAttributeIdent<'a>
impl<'a> Send for ExtendedAttributeIdent<'a>
impl<'a> Sync for ExtendedAttributeIdent<'a>
impl<'a> Unpin for ExtendedAttributeIdent<'a>
impl<'a> UnwindSafe for ExtendedAttributeIdent<'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