Struct syntax::ast::WhereBoundPredicate  [−][src]
pub struct WhereBoundPredicate {
    pub span: Span,
    pub bound_generic_params: Vec<GenericParam>,
    pub bounded_ty: P<Ty>,
    pub bounds: GenericBounds,
}A type bound.
E.g. for<'c> Foo: Send+Clone+'c
Fields
span: Span
                           
                           
                           
                           bound_generic_params: Vec<GenericParam>
                           Any generics from a for binding
bounded_ty: P<Ty>
                           The type being bounded
bounds: GenericBounds
                           Trait and lifetime bounds (Clone+Send+'static)
Trait Implementations
impl Clone for WhereBoundPredicate[src] 
impl Clone for WhereBoundPredicatefn clone(&self) -> WhereBoundPredicate[src] 
fn clone(&self) -> WhereBoundPredicateReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for WhereBoundPredicate[src] 
impl PartialEq for WhereBoundPredicatefn eq(&self, other: &WhereBoundPredicate) -> bool[src] 
fn eq(&self, other: &WhereBoundPredicate) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &WhereBoundPredicate) -> bool[src] 
fn ne(&self, other: &WhereBoundPredicate) -> boolThis method tests for !=.
impl Eq for WhereBoundPredicate[src] 
impl Eq for WhereBoundPredicateimpl Encodable for WhereBoundPredicate[src] 
impl Encodable for WhereBoundPredicateimpl Decodable for WhereBoundPredicate[src] 
impl Decodable for WhereBoundPredicateimpl Hash for WhereBoundPredicate[src] 
impl Hash for WhereBoundPredicatefn hash<__H: Hasher>(&self, state: &mut __H)[src] 
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for WhereBoundPredicate[src] 
impl Debug for WhereBoundPredicateAuto Trait Implementations
impl !Send for WhereBoundPredicate
impl !Send for WhereBoundPredicateimpl !Sync for WhereBoundPredicate
impl !Sync for WhereBoundPredicate