pub struct FindQuery {
pub id: Option<usize>,
pub chars: String,
pub case_sensitive: bool,
pub regex: bool,
pub whole_words: bool,
}
Fields§
§id: Option<usize>
§chars: String
§case_sensitive: bool
§regex: bool
§whole_words: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FindQuery
impl<'de> Deserialize<'de> for FindQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FindQuery
impl StructuralPartialEq for FindQuery
Auto Trait Implementations§
impl Freeze for FindQuery
impl RefUnwindSafe for FindQuery
impl Send for FindQuery
impl Sync for FindQuery
impl Unpin for FindQuery
impl UnwindSafe for FindQuery
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