[][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: &mut Conf) -> Result<(), ConfError>[src]

pub fn search<'v>(
    &'v self,
    prefix: &str,
    stype: Option<SelectionType>
) -> 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

pub fn key_desc_of_internal_stype(
    &self,
    internal: Internal,
    stype: SelectionType
) -> Option<String>
[src]

pub fn key_desc_of_internal(&self, internal: Internal) -> Option<String>[src]

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> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,