pub struct SearchFieldValues<'a> {
pub search: FieldValue<&'a str>,
pub replace: FieldValue<&'a str>,
pub fixed_strings: FieldValue<bool>,
pub match_whole_word: FieldValue<bool>,
pub match_case: FieldValue<bool>,
pub include_files: FieldValue<&'a str>,
pub exclude_files: FieldValue<&'a str>,
}Fields§
§search: FieldValue<&'a str>§replace: FieldValue<&'a str>§fixed_strings: FieldValue<bool>§match_whole_word: FieldValue<bool>§match_case: FieldValue<bool>§include_files: FieldValue<&'a str>§exclude_files: FieldValue<&'a str>Trait Implementations§
Source§impl<'a> Clone for SearchFieldValues<'a>
impl<'a> Clone for SearchFieldValues<'a>
Source§fn clone(&self) -> SearchFieldValues<'a>
fn clone(&self) -> SearchFieldValues<'a>
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 moreSource§impl<'a> Debug for SearchFieldValues<'a>
impl<'a> Debug for SearchFieldValues<'a>
Source§impl<'a> Default for SearchFieldValues<'a>
impl<'a> Default for SearchFieldValues<'a>
Source§fn default() -> SearchFieldValues<'a>
fn default() -> SearchFieldValues<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for SearchFieldValues<'a>
Source§impl<'a> PartialEq for SearchFieldValues<'a>
impl<'a> PartialEq for SearchFieldValues<'a>
impl<'a> StructuralPartialEq for SearchFieldValues<'a>
Auto Trait Implementations§
impl<'a> Freeze for SearchFieldValues<'a>
impl<'a> RefUnwindSafe for SearchFieldValues<'a>
impl<'a> Send for SearchFieldValues<'a>
impl<'a> Sync for SearchFieldValues<'a>
impl<'a> Unpin for SearchFieldValues<'a>
impl<'a> UnsafeUnpin for SearchFieldValues<'a>
impl<'a> UnwindSafe for SearchFieldValues<'a>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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