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 PartialEq for TraitItem
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TraitItem
[src]

impl Encodable for TraitItem
[src]

impl Decodable for TraitItem
[src]

impl Hash for TraitItem
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

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