pub struct SearchQuery {
pub pattern: String,
pub is_regex: bool,
pub case_sensitive: bool,
pub whole_word: bool,
}Expand description
Search parameters. Plain struct (parameter bag).
Fields§
§pattern: String§is_regex: bool§case_sensitive: bool§whole_word: boolAuto Trait Implementations§
impl Freeze for SearchQuery
impl RefUnwindSafe for SearchQuery
impl Send for SearchQuery
impl Sync for SearchQuery
impl Unpin for SearchQuery
impl UnsafeUnpin for SearchQuery
impl UnwindSafe for SearchQuery
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