[][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

attrs: Vec<Attribute>vis: Visibilityunsafety: Option<Unsafe>auto_token: Option<Auto>trait_token: Traitident: Identgenerics: Genericscolon_token: Option<Colon>supertraits: Punctuated<TypeParamBound, Add>brace_token: Braceitems: Vec<TraitItem>

Trait Implementations

impl Parse for ItemTrait[src]

impl From<ItemTrait> for Item[src]

impl Clone for ItemTrait[src]

impl Eq for ItemTrait[src]

impl PartialEq<ItemTrait> for ItemTrait[src]

impl Debug for ItemTrait[src]

impl Hash for ItemTrait[src]

impl StructuralPartialEq for ItemTrait[src]

impl StructuralEq for ItemTrait[src]

impl ToTokens for ItemTrait[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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