Struct syntax::ast::TraitItem[][src]

pub struct TraitItem {
    pub id: NodeId,
    pub ident: Ident,
    pub attrs: Vec<Attribute>,
    pub generics: Generics,
    pub node: TraitItemKind,
    pub span: Span,
    pub tokens: Option<TokenStream>,
}

Represents an item declaration within a trait declaration, possibly including a default implementation. A trait item is either required (meaning it doesn't have an implementation, just a signature) or provided (meaning it has a default implementation).

Fields

See Item::tokens for what this is

Trait Implementations

impl Clone for TraitItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for TraitItem
[src]

impl Decodable for TraitItem
[src]

impl Debug for TraitItem
[src]

Formats the value using the given formatter. Read more

impl HasAttrs for TraitItem
[src]

Important traits for &'a [u8]

impl ToTokens for TraitItem
[src]

Important traits for Vec<u8>

Auto Trait Implementations

impl !Send for TraitItem

impl !Sync for TraitItem