pub enum StringFieldFilter {
ExactMatch(String),
SubStringMatch(String),
}
Expand description
Filter options for subject and description
Variants§
ExactMatch(String)
match exactly this value
SubStringMatch(String)
match this substring of the actual value
Trait Implementations§
Source§impl Clone for StringFieldFilter
impl Clone for StringFieldFilter
Source§fn clone(&self) -> StringFieldFilter
fn clone(&self) -> StringFieldFilter
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 moreSource§impl Debug for StringFieldFilter
impl Debug for StringFieldFilter
Auto Trait Implementations§
impl Freeze for StringFieldFilter
impl RefUnwindSafe for StringFieldFilter
impl Send for StringFieldFilter
impl Sync for StringFieldFilter
impl Unpin for StringFieldFilter
impl UnwindSafe for StringFieldFilter
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