pub struct ConstraintAnd<L, R>(pub L, pub R);Expand description
Logical intersection of two executable/specification predicates.
Tuple Fields§
§0: L§1: RTrait Implementations§
impl<L: Copy, R: Copy> Copy for ConstraintAnd<L, R>
Auto Trait Implementations§
impl<L, R> Freeze for ConstraintAnd<L, R>
impl<L, R> RefUnwindSafe for ConstraintAnd<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for ConstraintAnd<L, R>
impl<L, R> Sync for ConstraintAnd<L, R>
impl<L, R> Unpin for ConstraintAnd<L, R>
impl<L, R> UnsafeUnpin for ConstraintAnd<L, R>where
L: UnsafeUnpin,
R: UnsafeUnpin,
impl<L, R> UnwindSafe for ConstraintAnd<L, R>where
L: UnwindSafe,
R: UnwindSafe,
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