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 Debug for NestedMeta
[src]

[src]

Formats the value using the given formatter.

impl Eq for NestedMeta
[src]

impl PartialEq for NestedMeta
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Hash for NestedMeta
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for NestedMeta
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<Meta> for NestedMeta
[src]

[src]

Performs the conversion.

impl From<Lit> for NestedMeta
[src]

[src]

Performs the conversion.

impl ToTokens for NestedMeta
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more