Enum syn::MetaItem [−][src]
A compile-time attribute item.
E.g. #[test]
, #[derive(..)]
or #[feature = "foo"]
Variants
Word(Ident)
Word meta item.
E.g. test
as in #[test]
List(Ident, Vec<NestedMetaItem>)
List meta item.
E.g. derive(..)
as in #[derive(..)]
NameValue(Ident, Lit)
Name-value meta item.
E.g. feature = "foo"
as in #[feature = "foo"]
Methods
impl MetaItem
[src]
impl MetaItem
pub fn name(&self) -> &str
[src]
pub fn name(&self) -> &str
Name of the item.
E.g. test
as in #[test]
, derive
as in #[derive(..)]
, and
feature
as in #[feature = "foo"]
.
Trait Implementations
impl ToTokens for MetaItem
[src]
impl ToTokens for MetaItem
impl Debug for MetaItem
[src]
impl Debug for MetaItem
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for MetaItem
[src]
impl Clone for MetaItem
fn clone(&self) -> MetaItem
[src]
fn clone(&self) -> MetaItem
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Eq for MetaItem
[src]
impl Eq for MetaItem
impl PartialEq for MetaItem
[src]
impl PartialEq for MetaItem
fn eq(&self, other: &MetaItem) -> bool
[src]
fn eq(&self, other: &MetaItem) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &MetaItem) -> bool
[src]
fn ne(&self, other: &MetaItem) -> bool
This method tests for !=
.
impl Hash for MetaItem
[src]
impl Hash for MetaItem