Struct futures_await_syn::MetaNameValue [] [src]

pub struct MetaNameValue {
    pub ident: Ident,
    pub eq_token: Eq,
    pub lit: Lit,
}

Name-value meta item.

E.g. feature = "foo" as in #[feature = "foo"]

Fields

Name of this attribute.

E.g. feature in #[feature = "foo"]

Arguments to this attribute

E.g. "foo" in #[feature = "foo"]

Trait Implementations

impl ToTokens for MetaNameValue
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Clone for MetaNameValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more