pub struct OrPredicate<A, B>(/* private fields */);
Trait Implementations§
Source§impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitAnd<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitAnd<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
Source§type Output = AndPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
type Output = AndPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
The resulting type after applying the
&
operator.Source§impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitOr<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitOr<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
Source§type Output = OrPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
type Output = OrPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
The resulting type after applying the
|
operator.Source§impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitXor<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
impl<P: IntoPredicate<<Self as Predicate>::Item>, A, B> BitXor<P> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
Source§type Output = XorPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
type Output = XorPredicate<OrPredicate<A, B>, <P as IntoPredicate<<OrPredicate<A, B> as Predicate>::Item>>::Pred>
The resulting type after applying the
^
operator.Source§impl<A: Clone, B: Clone> Clone for OrPredicate<A, B>
impl<A: Clone, B: Clone> Clone for OrPredicate<A, B>
Source§fn clone(&self) -> OrPredicate<A, B>
fn clone(&self) -> OrPredicate<A, B>
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<A, B> IntoPredicate<<OrPredicate<A, B> as Predicate>::Item> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
impl<A, B> IntoPredicate<<OrPredicate<A, B> as Predicate>::Item> for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
type Pred = OrPredicate<A, B>
fn into_predicate(self) -> Self::Pred
Source§impl<A, B> Not for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
impl<A, B> Not for OrPredicate<A, B>where
OrPredicate<A, B>: Predicate,
Source§type Output = NotPredicate<OrPredicate<A, B>>
type Output = NotPredicate<OrPredicate<A, B>>
The resulting type after applying the
!
operator.impl<A: Copy, B: Copy> Copy for OrPredicate<A, B>
Auto Trait Implementations§
impl<A, B> Freeze for OrPredicate<A, B>
impl<A, B> RefUnwindSafe for OrPredicate<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for OrPredicate<A, B>
impl<A, B> Sync for OrPredicate<A, B>
impl<A, B> Unpin for OrPredicate<A, B>
impl<A, B> UnwindSafe for OrPredicate<A, B>where
A: UnwindSafe,
B: 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