Struct syn::WhereBoundPredicate [−][src]
pub struct WhereBoundPredicate { pub bound_lifetimes: Vec<LifetimeDef>, pub bounded_ty: Ty, pub bounds: Vec<TyParamBound>, }
A type bound.
E.g. for<'c> Foo: Send+Clone+'c
Fields
bound_lifetimes: Vec<LifetimeDef>
Any lifetimes from a for
binding
bounded_ty: Ty
The type being bounded
bounds: Vec<TyParamBound>
Trait and lifetime bounds (Clone+Send+'static
)
Trait Implementations
impl ToTokens for WhereBoundPredicate
[src]
impl ToTokens for WhereBoundPredicate
impl Debug for WhereBoundPredicate
[src]
impl Debug for WhereBoundPredicate
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for WhereBoundPredicate
[src]
impl Clone for WhereBoundPredicate
fn clone(&self) -> WhereBoundPredicate
[src]
fn clone(&self) -> WhereBoundPredicate
Returns 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 Eq for WhereBoundPredicate
[src]
impl Eq for WhereBoundPredicate
impl PartialEq for WhereBoundPredicate
[src]
impl PartialEq for WhereBoundPredicate
fn eq(&self, other: &WhereBoundPredicate) -> bool
[src]
fn eq(&self, other: &WhereBoundPredicate) -> bool
This 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) -> bool
This method tests for !=
.
impl Hash for WhereBoundPredicate
[src]
impl Hash for WhereBoundPredicate
Auto Trait Implementations
impl Send for WhereBoundPredicate
impl Send for WhereBoundPredicate
impl Sync for WhereBoundPredicate
impl Sync for WhereBoundPredicate