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 MetaItempub fn name(&self) -> &str[src]
pub fn name(&self) -> &strName 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 MetaItemimpl Debug for MetaItem[src]
impl Debug for MetaItemfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for MetaItem[src]
impl Clone for MetaItemfn clone(&self) -> MetaItem[src]
fn clone(&self) -> MetaItemReturns 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 MetaItemimpl PartialEq for MetaItem[src]
impl PartialEq for MetaItemfn eq(&self, other: &MetaItem) -> bool[src]
fn eq(&self, other: &MetaItem) -> boolThis 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) -> boolThis method tests for !=.
impl Hash for MetaItem[src]
impl Hash for MetaItem