Struct syntex_syntax::ast::Item [] [src]

pub struct Item {
    pub ident: Ident,
    pub attrs: Vec<Attribute>,
    pub id: NodeId,
    pub node: Item_,
    pub vis: Visibility,
    pub span: Span,
}

An item

The name might be a dummy name in case of anonymous items

Fields

ident
attrs
id
node
vis
span

Methods

impl Item

fn attrs(&self) -> &[Attribute]

Trait Implementations

Derived Implementations

impl Debug for Item

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for Item

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for Item

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Item, __D::Error>

impl Encodable for Item

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Eq for Item

impl PartialEq for Item

fn eq(&self, __arg_0: &Item) -> bool

fn ne(&self, __arg_0: &Item) -> bool

impl Clone for Item

fn clone(&self) -> Item

fn clone_from(&mut self, source: &Self)