pub enum WherePredicate {
BoundPredicate {
ty: Type,
bounds: Vec<GenericBound>,
bound_params: Vec<Lifetime>,
},
RegionPredicate {
lifetime: Lifetime,
bounds: Vec<GenericBound>,
},
EqPredicate {
lhs: Type,
rhs: Type,
},
}Variants§
Trait Implementations§
Source§impl Clone for WherePredicate
impl Clone for WherePredicate
Source§fn clone(&self) -> WherePredicate
fn clone(&self) -> WherePredicate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WherePredicate
impl Debug for WherePredicate
Source§impl<'de> Deserialize<'de> for WherePredicate
impl<'de> Deserialize<'de> for WherePredicate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WherePredicate
impl RefUnwindSafe for WherePredicate
impl Send for WherePredicate
impl Sync for WherePredicate
impl Unpin for WherePredicate
impl UnwindSafe for WherePredicate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more