pub struct KeysSearch {
pub toggle_preview_wrapping: Keys,
pub toggle_hidden_files: Keys,
pub toggle_multiline: Keys,
pub toggle_interpret_escape_sequences: Keys,
pub fields: KeysSearchFocusFields,
pub results: KeysSearchFocusResults,
}Fields§
§toggle_preview_wrapping: KeysToggle wrapping of lines that don’t fit within the width of the preview
Toggle inclusion of hidden files and directories, such as those whose name starts with a dot (.)
toggle_multiline: KeysToggle multiline search mode, which allows patterns to match across line boundaries
toggle_interpret_escape_sequences: KeysToggle interpretation of escape sequences in replacement text (\n becomes newline, \t becomes tab, \ becomes backslash)
fields: KeysSearchFocusFieldsCommands available on the search screen, when the search fields are focussed
results: KeysSearchFocusResultsCommands available on the search screen, when the search results are focussed
Trait Implementations§
Source§impl Clone for KeysSearch
impl Clone for KeysSearch
Source§fn clone(&self) -> KeysSearch
fn clone(&self) -> KeysSearch
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 Debug for KeysSearch
impl Debug for KeysSearch
Source§impl Default for KeysSearch
impl Default for KeysSearch
Source§impl<'de> Deserialize<'de> for KeysSearchwhere
KeysSearch: Default,
impl<'de> Deserialize<'de> for KeysSearchwhere
KeysSearch: Default,
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
Source§impl PartialEq for KeysSearch
impl PartialEq for KeysSearch
Source§impl Serialize for KeysSearch
impl Serialize for KeysSearch
impl StructuralPartialEq for KeysSearch
Auto Trait Implementations§
impl Freeze for KeysSearch
impl RefUnwindSafe for KeysSearch
impl Send for KeysSearch
impl Sync for KeysSearch
impl Unpin for KeysSearch
impl UnsafeUnpin for KeysSearch
impl UnwindSafe for KeysSearch
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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