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 ( |
Trait Implementations
Derived Implementations
impl Debug for WhereBoundPredicate
[src]
impl Hash for WhereBoundPredicate
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
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
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<WhereBoundPredicate, __D::Error>
impl Encodable for WhereBoundPredicate
[src]
impl Eq for WhereBoundPredicate
[src]
impl PartialEq for WhereBoundPredicate
[src]
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
[src]
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