pub struct WherePredicate {
pub ty: Type,
pub bounds: Vec<TypeBound>,
pub span: Span,
}Expand description
A single predicate in a where clause: T: Clone + Debug
Fields§
§ty: Type§bounds: Vec<TypeBound>§span: SpanImplementations§
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 PartialEq for WherePredicate
impl PartialEq for WherePredicate
impl StructuralPartialEq for WherePredicate
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