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 PartialEq for TraitItem[src] 
impl PartialEq for TraitItemfn eq(&self, other: &TraitItem) -> bool[src] 
fn eq(&self, other: &TraitItem) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TraitItem) -> bool[src] 
fn ne(&self, other: &TraitItem) -> boolThis method tests for !=.
impl Eq for TraitItem[src] 
impl Eq for TraitItemimpl Encodable for TraitItem[src] 
impl Encodable for TraitItemimpl Decodable for TraitItem[src] 
impl Decodable for TraitItemimpl Hash for TraitItem[src] 
impl Hash for TraitItemfn hash<__H: Hasher>(&self, state: &mut __H)[src] 
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl 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