Struct predicates::boolean::AndPredicate
source · pub struct AndPredicate<M1, M2, Item>{ /* private fields */ }
Expand description
Predicate that combines two Predicate
s, returning the AND of the results.
This is created by the Predicate::and
function.
Implementations§
source§impl<M1, M2, Item> AndPredicate<M1, M2, Item>
impl<M1, M2, Item> AndPredicate<M1, M2, Item>
sourcepub fn new(a: M1, b: M2) -> AndPredicate<M1, M2, Item>
pub fn new(a: M1, b: M2) -> AndPredicate<M1, M2, Item>
Create a new AndPredicate
over predicates a
and b
.
Trait Implementations§
source§impl<M1, M2, Item> Clone for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Clone for AndPredicate<M1, M2, Item>
source§fn clone(&self) -> AndPredicate<M1, M2, Item>
fn clone(&self) -> AndPredicate<M1, M2, Item>
Returns a copy 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<M1, M2, Item> Debug for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Debug for AndPredicate<M1, M2, Item>
source§impl<M1, M2, Item> Display for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Display for AndPredicate<M1, M2, Item>
source§impl<M1, M2, Item> PartialEq for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> PartialEq for AndPredicate<M1, M2, Item>
source§fn eq(&self, other: &AndPredicate<M1, M2, Item>) -> bool
fn eq(&self, other: &AndPredicate<M1, M2, Item>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<M1, M2, Item> Predicate<Item> for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Predicate<Item> for AndPredicate<M1, M2, Item>
source§impl<M1, M2, Item> PredicateReflection for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> PredicateReflection for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Copy for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Eq for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Send for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> StructuralPartialEq for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Sync for AndPredicate<M1, M2, Item>
Auto Trait Implementations§
impl<M1, M2, Item> Freeze for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> RefUnwindSafe for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> Unpin for AndPredicate<M1, M2, Item>
impl<M1, M2, Item> UnwindSafe for AndPredicate<M1, M2, Item>
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moresource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read more