[][src]Struct broot::verb_store::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 new() -> 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(&self, name: &str) -> usize[src]

return the index of the verb having the long name. This function is meant for internal access when it's sure it can't fail (i.e. for a builtin) It looks for verbs by name, starting from the builtins, to ensure it hasn't been overriden.

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

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.