[][src]Struct syn::ItemTrait

pub struct ItemTrait {
    pub attrs: Vec<Attribute>,
    pub vis: Visibility,
    pub unsafety: Option<Unsafe>,
    pub auto_token: Option<Auto>,
    pub trait_token: Trait,
    pub ident: Ident,
    pub generics: Generics,
    pub colon_token: Option<Colon>,
    pub supertraits: Punctuated<TypeParamBound, Add>,
    pub brace_token: Brace,
    pub items: Vec<TraitItem>,
}
[]

A trait definition: pub trait Iterator { ... }.

This type is available if Syn is built with the "full" feature.

Fields

Trait Implementations

impl Parse for ItemTrait
[src]
[+]

impl PartialEq<ItemTrait> for ItemTrait
[src]
[+]

impl From<ItemTrait> for Item
[src]
[+]

impl Clone for ItemTrait
[src]
[+]

[]

Performs copy-assignment from source. Read more

impl Eq for ItemTrait
[src]

impl Debug for ItemTrait
[src]
[+]

impl Hash for ItemTrait
[src]
[+]

[]

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

impl ToTokens for ItemTrait
[src]
[+]

[]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Send for ItemTrait

impl !Sync for ItemTrait

Blanket Implementations

impl<T> Spanned for T where
    T: ToTokens
[src]
[]

impl<T, U> Into for T where
    U: From<T>, 
[src]
[]

impl<T> ToOwned for T where
    T: Clone
[src]
[]

impl<T> From for T
[src]
[]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]
[]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]
[]

impl<T> Any for T where
    T: 'static + ?Sized
[src]
[]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]
[]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]
[]