Struct syntex_syntax::ast::WhereBoundPredicate [] [src]

pub struct WhereBoundPredicate {
    pub span: Span,
    pub bound_lifetimes: Vec<LifetimeDef>,
    pub bounded_ty: P<Ty>,
    pub bounds: OwnedSlice<TyParamBound>,
}

A type bound, eg for<'c> Foo: Send+Clone+'c

Fields

span
bound_lifetimes

Any lifetimes from a for binding

bounded_ty

The type being bounded

bounds

Trait and lifetime bounds (Clone+Send+'static)

Trait Implementations

Derived Implementations

impl Debug for WhereBoundPredicate

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for WhereBoundPredicate

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for WhereBoundPredicate

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<WhereBoundPredicate, __D::Error>

impl Encodable for WhereBoundPredicate

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Eq for WhereBoundPredicate

impl PartialEq for WhereBoundPredicate

fn eq(&self, __arg_0: &WhereBoundPredicate) -> bool

fn ne(&self, __arg_0: &WhereBoundPredicate) -> bool

impl Clone for WhereBoundPredicate

fn clone(&self) -> WhereBoundPredicate

fn clone_from(&mut self, source: &Self)