pub enum MDQueryConditionType {
All,
Any,
}Expand description
Defines the logical operation to apply when combining multiple expressions.
This enum determines how the expressions within an MDQueryCondition are combined:
All: Combines expressions with logical AND (&&)Any: Combines expressions with logical OR (||)
Variants§
All
Combines all expressions with logical AND (&&)
Any
Combines all expressions with logical OR (||)
Auto Trait Implementations§
impl Freeze for MDQueryConditionType
impl RefUnwindSafe for MDQueryConditionType
impl Send for MDQueryConditionType
impl Sync for MDQueryConditionType
impl Unpin for MDQueryConditionType
impl UnsafeUnpin for MDQueryConditionType
impl UnwindSafe for MDQueryConditionType
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