[][src]Struct syn::TypeTraitObject

pub struct TypeTraitObject {
    pub dyn_token: Option<Dyn>,
    pub bounds: Punctuated<TypeParamBound, Add>,
}

A trait object type Bound1 + Bound2 + Bound3 where Bound is a trait or a lifetime.

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

Fields

Methods

impl TypeTraitObject
[src]

Trait Implementations

impl Parse for TypeTraitObject
[src]

impl PartialEq<TypeTraitObject> for TypeTraitObject
[src]

impl Clone for TypeTraitObject
[src]

Performs copy-assignment from source. Read more

impl From<TypeTraitObject> for Type
[src]

impl Eq for TypeTraitObject
[src]

impl Hash for TypeTraitObject
[src]

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

impl Debug for TypeTraitObject
[src]

impl ToTokens for TypeTraitObject
[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Send for TypeTraitObject

impl !Sync for TypeTraitObject

Blanket Implementations

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

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[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> BorrowMut for T where
    T: ?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.