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
Auto 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