Enum syntax::ast::MetaItemKind[][src]

pub enum MetaItemKind {
    Word,
    List(Vec<NestedMetaItem>),
    NameValue(Lit),
}

A compile-time attribute item.

E.g. #[test], #[derive(..)] or #[feature = "foo"]

Variants

Word meta item.

E.g. test as in #[test]

List meta item.

E.g. derive(..) as in #[derive(..)]

Name value meta item.

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

Methods

impl MetaItemKind
[src]

Trait Implementations

impl Clone for MetaItemKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for MetaItemKind
[src]

impl Decodable for MetaItemKind
[src]

impl Debug for MetaItemKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for MetaItemKind

impl !Sync for MetaItemKind