pub enum FilterOperand {
Expression(FilterExpressionOperand),
Operation(FilterOperationOperand),
}Variants§
Expression(FilterExpressionOperand)
Operation(FilterOperationOperand)
Trait Implementations§
Source§impl Clone for FilterOperand
impl Clone for FilterOperand
Source§fn clone(&self) -> FilterOperand
fn clone(&self) -> FilterOperand
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 FilterOperand
impl Debug for FilterOperand
Source§impl From<FilterCondition> for FilterOperand
impl From<FilterCondition> for FilterOperand
Source§fn from(value: FilterCondition) -> Self
fn from(value: FilterCondition) -> Self
Converts to this type from the input type.
Source§impl From<FilterTree> for FilterOperand
impl From<FilterTree> for FilterOperand
Source§fn from(value: FilterTree) -> Self
fn from(value: FilterTree) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FilterOperand
impl PartialEq for FilterOperand
Source§impl Serialize for FilterOperand
impl Serialize for FilterOperand
impl StructuralPartialEq for FilterOperand
Auto Trait Implementations§
impl Freeze for FilterOperand
impl RefUnwindSafe for FilterOperand
impl Send for FilterOperand
impl Sync for FilterOperand
impl Unpin for FilterOperand
impl UnsafeUnpin for FilterOperand
impl UnwindSafe for FilterOperand
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