Enum syn::WherePredicate [−][src]
pub enum WherePredicate {
BoundPredicate(WhereBoundPredicate),
RegionPredicate(WhereRegionPredicate),
EqPredicate(WhereEqPredicate),
}A single predicate in a where clause
Variants
BoundPredicate(WhereBoundPredicate)A type binding, e.g. for<'c> Foo: Send+Clone+'c
RegionPredicate(WhereRegionPredicate)A lifetime predicate, e.g. 'a: 'b+'c
EqPredicate(WhereEqPredicate)An equality predicate (unsupported)
Trait Implementations
impl ToTokens for WherePredicate[src]
impl ToTokens for WherePredicateimpl Debug for WherePredicate[src]
impl Debug for WherePredicatefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for WherePredicate[src]
impl Clone for WherePredicatefn clone(&self) -> WherePredicate[src]
fn clone(&self) -> WherePredicateReturns 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 WherePredicate[src]
impl Eq for WherePredicateimpl PartialEq for WherePredicate[src]
impl PartialEq for WherePredicatefn eq(&self, other: &WherePredicate) -> bool[src]
fn eq(&self, other: &WherePredicate) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &WherePredicate) -> bool[src]
fn ne(&self, other: &WherePredicate) -> boolThis method tests for !=.
impl Hash for WherePredicate[src]
impl Hash for WherePredicateAuto Trait Implementations
impl Send for WherePredicate
impl Send for WherePredicateimpl Sync for WherePredicate
impl Sync for WherePredicate