Enum syn::NestedMetaItem
[−]
[src]
pub enum NestedMetaItem { MetaItem(MetaItem), Literal(Lit), }
Possible values inside of compile-time attribute lists.
E.g. the '..' in #[name(..)]
.
Variants
MetaItem(MetaItem)
A full MetaItem
.
E.g. Copy
in #[derive(Copy)]
would be a MetaItem::Word(Ident::from("Copy"))
.
Literal(Lit)
A Rust literal.
E.g. "name"
in #[rename("name")]
.
Trait Implementations
impl ToTokens for NestedMetaItem
[src]
impl Debug for NestedMetaItem
[src]
impl Clone for NestedMetaItem
[src]
fn clone(&self) -> NestedMetaItem
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Eq for NestedMetaItem
[src]
impl PartialEq for NestedMetaItem
[src]
fn eq(&self, __arg_0: &NestedMetaItem) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &NestedMetaItem) -> bool
This method tests for !=
.