pub struct FilterSpec {
pub field: String,
pub op: FilterOp,
pub value: String,
}Expand description
A parsed filter spec, before being bound to a format.
Fields§
§field: String§op: FilterOp§value: StringImplementations§
Source§impl FilterSpec
impl FilterSpec
Trait Implementations§
Source§impl Clone for FilterSpec
impl Clone for FilterSpec
Source§fn clone(&self) -> FilterSpec
fn clone(&self) -> FilterSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FilterSpec
impl RefUnwindSafe for FilterSpec
impl Send for FilterSpec
impl Sync for FilterSpec
impl Unpin for FilterSpec
impl UnsafeUnpin for FilterSpec
impl UnwindSafe for FilterSpec
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