pub struct TextSearchOptions {
pub k: usize,
}Fields§
§k: usizeImplementations§
Trait Implementations§
Source§impl Clone for TextSearchOptions
impl Clone for TextSearchOptions
Source§fn clone(&self) -> TextSearchOptions
fn clone(&self) -> TextSearchOptions
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 moreimpl Copy for TextSearchOptions
Source§impl Debug for TextSearchOptions
impl Debug for TextSearchOptions
Source§impl Default for TextSearchOptions
impl Default for TextSearchOptions
impl Eq for TextSearchOptions
Source§impl PartialEq for TextSearchOptions
impl PartialEq for TextSearchOptions
impl StructuralPartialEq for TextSearchOptions
Auto Trait Implementations§
impl Freeze for TextSearchOptions
impl RefUnwindSafe for TextSearchOptions
impl Send for TextSearchOptions
impl Sync for TextSearchOptions
impl Unpin for TextSearchOptions
impl UnsafeUnpin for TextSearchOptions
impl UnwindSafe for TextSearchOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more