pub enum NestedMetaItem {
MetaItem(MetaItem),
Literal(Lit),
}
Possible values inside of compile-time attribute lists.
E.g. the '..' in #[name(..)]
.
A full MetaItem
.
E.g. Copy
in #[derive(Copy)]
would be a MetaItem::Word(Ident::from("Copy"))
.
A Rust literal.
E.g. "name"
in #[rename("name")]
.
Formats the value using the given formatter. Read more
Performs copy-assignment from source
. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Feeds this value into the given [Hasher
]. Read more
Feeds a slice of this type into the given [Hasher
]. Read more