Enum syn::NestedMeta[][src]

pub enum NestedMeta {
    Meta(Meta),
    Literal(Lit),
}
[]

Element of a compile-time attribute list.

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

Variants

[]

A structured meta item, like the Copy in #[derive(Copy)] which would be a nested Meta::Word.

[]

A Rust literal, like the "new_name" in #[rename("new_name")].

Trait Implementations

impl Clone for NestedMeta
[src]
[+]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl From<Meta> for NestedMeta
[src]
[+]

[]

Performs the conversion.

impl From<Lit> for NestedMeta
[src]
[+]

[]

Performs the conversion.

impl ToTokens for NestedMeta
[src]
[+]

[]

Write self to the given Tokens. Read more

[]

Convert self directly into a Tokens object. Read more

Auto Trait Implementations

impl !Send for NestedMeta

impl !Sync for NestedMeta