Struct rustc_typeck::hir::WhereBoundPredicate
[−]
[src]
pub struct WhereBoundPredicate { pub span: Span, pub bound_lifetimes: P<[LifetimeDef]>, pub bounded_ty: P<Ty>, pub bounds: P<[TyParamBound]>, }
Unstable (
rustc_private
)A type bound, eg for<'c> Foo: Send+Clone+'c
Fields
span: Span
Unstable (
rustc_private
)bound_lifetimes: P<[LifetimeDef]>
Unstable (
rustc_private
)Any lifetimes from a for
binding
bounded_ty: P<Ty>
Unstable (
rustc_private
)The type being bounded
bounds: P<[TyParamBound]>
Unstable (
rustc_private
)Trait and lifetime bounds (Clone+Send+'static
)
Trait Implementations
Derived Implementations
impl Debug for WhereBoundPredicate
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Hash for WhereBoundPredicate
fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for WhereBoundPredicate
fn decode<__D>(__arg_0: &mut __D) -> Result<WhereBoundPredicate, __D::Error> where __D: Decoder
impl Encodable for WhereBoundPredicate
impl Eq for WhereBoundPredicate
impl PartialEq<WhereBoundPredicate> for WhereBoundPredicate
fn eq(&self, __arg_0: &WhereBoundPredicate) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &WhereBoundPredicate) -> bool
This method tests for !=
.
impl Clone for WhereBoundPredicate
fn clone(&self) -> WhereBoundPredicate
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more