pub struct FilterTree {
pub operator: LogicalOperator,
pub operands: Vec<FilterOperand>,
}Fields§
§operator: LogicalOperator§operands: Vec<FilterOperand>Implementations§
Trait Implementations§
Source§impl Clone for FilterTree
impl Clone for FilterTree
Source§fn clone(&self) -> FilterTree
fn clone(&self) -> FilterTree
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 FilterTree
impl Debug for FilterTree
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 FilterTree
impl PartialEq for FilterTree
Source§impl Serialize for FilterTree
impl Serialize for FilterTree
impl StructuralPartialEq for FilterTree
Auto Trait Implementations§
impl Freeze for FilterTree
impl RefUnwindSafe for FilterTree
impl Send for FilterTree
impl Sync for FilterTree
impl Unpin for FilterTree
impl UnsafeUnpin for FilterTree
impl UnwindSafe for FilterTree
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