[][src]Enum alacritty::config::bindings::SearchAction

pub enum SearchAction {
    SearchFocusNext,
    SearchFocusPrevious,
    SearchConfirm,
    SearchCancel,
    SearchClear,
    SearchDeleteWord,
    SearchHistoryPrevious,
    SearchHistoryNext,
}

Search mode specific actions.

Variants

SearchFocusNext

Move the focus to the next search match.

SearchFocusPrevious

Move the focus to the previous search match.

SearchConfirm

Confirm the active search.

SearchCancel

Cancel the active search.

SearchClear

Reset the search regex.

SearchDeleteWord

Delete the last word in the search regex.

SearchHistoryPrevious

Go to the previous regex in the search history.

SearchHistoryNext

Go to the next regex in the search history.

Trait Implementations

impl Clone for SearchAction[src]

impl Copy for SearchAction[src]

impl Debug for SearchAction[src]

impl<'de> Deserialize<'de> for SearchAction[src]

impl Eq for SearchAction[src]

impl From<SearchAction> for Action[src]

impl PartialEq<SearchAction> for SearchAction[src]

impl StructuralEq for SearchAction[src]

impl StructuralPartialEq for SearchAction[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchAction

impl Send for SearchAction

impl Sync for SearchAction

impl Unpin for SearchAction

impl UnwindSafe for SearchAction

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ResetDiscriminant<T> for T where
    T: Copy
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.