[][src]Struct syn::MetaNameValue

pub struct MetaNameValue {
    pub path: Path,
    pub eq_token: Eq,
    pub lit: Lit,
}

A name-value pair within an attribute, like feature = "nightly".

This type is available if Syn is built with the "derive" or "full" feature.

Fields

path: Patheq_token: Eqlit: Lit

Trait Implementations

impl Clone for MetaNameValue[src]

impl Debug for MetaNameValue[src]

impl Eq for MetaNameValue[src]

impl From<MetaNameValue> for Meta[src]

impl Hash for MetaNameValue[src]

impl Parse for MetaNameValue[src]

impl PartialEq<MetaNameValue> for MetaNameValue[src]

impl StructuralEq for MetaNameValue[src]

impl StructuralPartialEq for MetaNameValue[src]

impl ToTokens for MetaNameValue[src]

Auto Trait Implementations

impl !RefUnwindSafe for MetaNameValue

impl !Send for MetaNameValue

impl !Sync for MetaNameValue

impl Unpin for MetaNameValue

impl UnwindSafe for MetaNameValue

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.