Struct syntex_syntax::ast::TraitItem [] [src]

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

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

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]

Serialize a value using an Encoder.

impl Decodable for TraitItem
[src]

Deserialize a value using a Decoder.

impl Hash for TraitItem
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Debug for TraitItem
[src]

Formats the value using the given formatter.

impl HasAttrs for TraitItem
[src]

impl ToTokens for TraitItem
[src]