pub enum JoinOperator {
And,
Or,
}Expand description
Describe how to handle multiple conditions.
Variants§
And
Combine two given conditions using and semantics.
Or
Combine two given conditions using or semantics.
Trait Implementations§
Source§impl Debug for JoinOperator
impl Debug for JoinOperator
Auto Trait Implementations§
impl Freeze for JoinOperator
impl RefUnwindSafe for JoinOperator
impl Send for JoinOperator
impl Sync for JoinOperator
impl Unpin for JoinOperator
impl UnwindSafe for JoinOperator
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