Struct syn::TraitItem
[−]
[src]
pub struct TraitItem { pub ident: Ident, pub attrs: Vec<Attribute>, pub node: TraitItemKind, }
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
ident: Ident
attrs: Vec<Attribute>
node: TraitItemKind
Trait Implementations
impl ToTokens for TraitItem
[src]
impl Debug for TraitItem
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for TraitItem
[src]
fn clone(&self) -> TraitItem
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Eq for TraitItem
[src]
impl PartialEq for TraitItem
[src]
fn eq(&self, __arg_0: &TraitItem) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &TraitItem) -> bool
[src]
This method tests for !=
.