pub enum ComprehensionOp {
All,
Exists,
ExistsOne,
Filter,
}Expand description
A comprehension operation is a way to iterate over a collection and apply a filter or transformation.
Variants§
Trait Implementations§
Source§impl Clone for ComprehensionOp
impl Clone for ComprehensionOp
Source§fn clone(&self) -> ComprehensionOp
fn clone(&self) -> ComprehensionOp
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 moreSource§impl Debug for ComprehensionOp
impl Debug for ComprehensionOp
Source§impl PartialEq for ComprehensionOp
impl PartialEq for ComprehensionOp
impl Copy for ComprehensionOp
impl StructuralPartialEq for ComprehensionOp
Auto Trait Implementations§
impl Freeze for ComprehensionOp
impl RefUnwindSafe for ComprehensionOp
impl Send for ComprehensionOp
impl Sync for ComprehensionOp
impl Unpin for ComprehensionOp
impl UnwindSafe for ComprehensionOp
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