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 |
bounded_ty | The type being bounded |
bounds | Trait and lifetime bounds ( |