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
id: NodeId
                           
                           
                           
                           ident: Ident
                           
                           
                           
                           attrs: Vec<Attribute>
                           
                           
                           
                           generics: Generics
                           
                           
                           
                           node: TraitItemKind
                           
                           
                           
                           span: Span
                           
                           
                           
                           tokens: Option<TokenStream>
                           See Item::tokens for what this is
Trait Implementations
impl Clone for TraitItem[src] 
impl Clone for TraitItemfn clone(&self) -> TraitItem[src] 
fn clone(&self) -> TraitItemReturns 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 Encodable for TraitItem[src] 
impl Encodable for TraitItemimpl Decodable for TraitItem[src] 
impl Decodable for TraitItemimpl Debug for TraitItem[src] 
impl Debug for TraitItemfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl HasAttrs for TraitItem[src] 
impl HasAttrs for TraitItemfn attrs(&self) -> &[Attribute][src] 
fn attrs(&self) -> &[Attribute]fn map_attrs<F>(self, f: F) -> Self where
    F: FnOnce(Vec<Attribute>) -> Vec<Attribute>, [src] 
fn map_attrs<F>(self, f: F) -> Self where
    F: FnOnce(Vec<Attribute>) -> Vec<Attribute>, impl ToTokens for TraitItem[src] 
impl ToTokens for TraitItem