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 PartialEq for MetaItemKind
[src]

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

This method tests for !=.

impl Eq for MetaItemKind
[src]

impl Encodable for MetaItemKind
[src]

impl Decodable for MetaItemKind
[src]

impl Hash for MetaItemKind
[src]

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

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

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