pub enum AttributeArgVariant {
    Unnamed {
        value: Expr,
        value_stable_ptr: ExprPtr,
    },
    Named {
        value: Expr,
        value_stable_ptr: ExprPtr,
        name: SmolStr,
        name_stable_ptr: TerminalIdentifierPtr,
    },
    FieldInitShorthand {
        name: SmolStr,
        name_stable_ptr: TerminalIdentifierPtr,
    },
}Expand description
Variant of AttributeArg.
Variants§
Trait Implementations§
source§impl Clone for AttributeArgVariant
 
impl Clone for AttributeArgVariant
source§fn clone(&self) -> AttributeArgVariant
 
fn clone(&self) -> AttributeArgVariant
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 Debug for AttributeArgVariant
 
impl Debug for AttributeArgVariant
source§impl PartialEq<AttributeArgVariant> for AttributeArgVariant
 
impl PartialEq<AttributeArgVariant> for AttributeArgVariant
source§fn eq(&self, other: &AttributeArgVariant) -> bool
 
fn eq(&self, other: &AttributeArgVariant) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for AttributeArgVariant
impl StructuralEq for AttributeArgVariant
impl StructuralPartialEq for AttributeArgVariant
Auto Trait Implementations§
impl RefUnwindSafe for AttributeArgVariant
impl Send for AttributeArgVariant
impl Sync for AttributeArgVariant
impl Unpin for AttributeArgVariant
impl UnwindSafe for AttributeArgVariant
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
source§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.