pub enum FallibleFilterPredicate {
Single(FilterPredicateSingle),
And(Vec<Result<FallibleFilterPredicate, (InputError, String)>>),
Or(Vec<Result<FallibleFilterPredicate, (InputError, String)>>),
}
Variants§
Single(FilterPredicateSingle)
And(Vec<Result<FallibleFilterPredicate, (InputError, String)>>)
Or(Vec<Result<FallibleFilterPredicate, (InputError, String)>>)
Trait Implementations§
Source§impl Clone for FallibleFilterPredicate
impl Clone for FallibleFilterPredicate
Source§fn clone(&self) -> FallibleFilterPredicate
fn clone(&self) -> FallibleFilterPredicate
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 moreAuto Trait Implementations§
impl Freeze for FallibleFilterPredicate
impl RefUnwindSafe for FallibleFilterPredicate
impl Send for FallibleFilterPredicate
impl Sync for FallibleFilterPredicate
impl Unpin for FallibleFilterPredicate
impl UnwindSafe for FallibleFilterPredicate
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