Struct syn::TraitBound[][src]

pub struct TraitBound {
    pub paren_token: Option<Paren>,
    pub modifier: TraitBoundModifier,
    pub lifetimes: Option<BoundLifetimes>,
    pub path: Path,
}

A trait used as a bound on a type parameter.

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

Fields

The for<'a> in for<'a> Foo<&'a T>

The Foo<&'a T> in for<'a> Foo<&'a T>

Trait Implementations

impl Synom for TraitBound
[src]

A short name of the type being parsed. Read more

impl ToTokens for TraitBound
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl From<TraitBound> for TypeParamBound
[src]

Performs the conversion.

impl Debug for TraitBound
[src]

Formats the value using the given formatter. Read more

impl Eq for TraitBound
[src]

impl PartialEq for TraitBound
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for TraitBound
[src]

Feeds this value into the given [Hasher]. Read more

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

impl Clone for TraitBound
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for TraitBound

impl !Sync for TraitBound