[][src]Struct broot::verb::VerbStore

pub struct VerbStore {
    pub verbs: Vec<Verb>,
}

Provide access to the verbs:

  • the built-in ones
  • the user defined ones A user defined verb can replace a built-in. When the user types some keys, we select a verb
  • if the input exactly matches a shortcut or the name
  • if only one verb name starts with the input

Fields

verbs: Vec<Verb>

Implementations

impl VerbStore[src]

pub fn init(&mut self, conf: &Conf)[src]

pub fn search<'v>(&'v self, prefix: &str) -> PrefixSearchResult<'v, &Verb>[src]

pub fn index_of_key(&self, key: KeyEvent) -> Option<usize>[src]

return the index of the verb which is triggered by the given keyboard key, if any

Trait Implementations

impl Default for VerbStore[src]

Auto Trait Implementations

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> From<T> for T[src]

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

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.