pub struct FilterTriple {
pub field: String,
pub filter: Filter,
pub value: String,
}
Expand description
Internal structure for representing a filter condition
Combines a field name, filter operation, and value into a single filter condition that can be applied to a table query.
Fields§
§field: String
The name of the field to filter on
filter: Filter
The filter operation to apply
value: String
The value to compare against
Trait Implementations§
Source§impl Clone for FilterTriple
impl Clone for FilterTriple
Source§fn clone(&self) -> FilterTriple
fn clone(&self) -> FilterTriple
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for FilterTriple
impl RefUnwindSafe for FilterTriple
impl Send for FilterTriple
impl Sync for FilterTriple
impl Unpin for FilterTriple
impl UnwindSafe for FilterTriple
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