pub struct AndPredicate<Left, Right> { /* private fields */ }Expand description
The conjunction of two query predicates.
Trait Implementations§
Source§impl<Left: Clone, Right: Clone> Clone for AndPredicate<Left, Right>
impl<Left: Clone, Right: Clone> Clone for AndPredicate<Left, Right>
Source§fn clone(&self) -> AndPredicate<Left, Right>
fn clone(&self) -> AndPredicate<Left, Right>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<Left: Copy, Right: Copy> Copy for AndPredicate<Left, Right>
impl<Left: Eq, Right: Eq> Eq for AndPredicate<Left, Right>
Source§impl<T, Left, Right> QueryPredicate<T> for AndPredicate<Left, Right>
impl<T, Left, Right> QueryPredicate<T> for AndPredicate<Left, Right>
impl<Left: PartialEq, Right: PartialEq> StructuralPartialEq for AndPredicate<Left, Right>
Auto Trait Implementations§
impl<Left, Right> Freeze for AndPredicate<Left, Right>
impl<Left, Right> RefUnwindSafe for AndPredicate<Left, Right>where
Left: RefUnwindSafe,
Right: RefUnwindSafe,
impl<Left, Right> Send for AndPredicate<Left, Right>
impl<Left, Right> Sync for AndPredicate<Left, Right>
impl<Left, Right> Unpin for AndPredicate<Left, Right>
impl<Left, Right> UnsafeUnpin for AndPredicate<Left, Right>where
Left: UnsafeUnpin,
Right: UnsafeUnpin,
impl<Left, Right> UnwindSafe for AndPredicate<Left, Right>where
Left: UnwindSafe,
Right: 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