Struct broot::pattern::SearchModeMap[][src]

pub struct SearchModeMap {
    pub entries: Vec<SearchModeMapEntry>,
}

manage how to find the search mode to apply to a pattern taking the config in account.

Fields

entries: Vec<SearchModeMapEntry>

Implementations

impl SearchModeMap[src]

pub fn setm(&mut self, keys: &[&str], mode: SearchMode)[src]

pub fn set(&mut self, entry: SearchModeMapEntry)[src]

we don’t remove existing entries to ensure there’s always a matching entry in mode->key (but search iterations will be done in reverse)

pub fn search_mode(
    &self,
    key: Option<&String>
) -> Result<SearchMode, PatternError>
[src]

pub fn key(&self, search_mode: SearchMode) -> Option<&String>[src]

Trait Implementations

impl Clone for SearchModeMap[src]

impl Debug for SearchModeMap[src]

impl Default for SearchModeMap[src]

impl TryFrom<&'_ HashMap<String, String, BuildHasherDefault<FnvHasher>>> for SearchModeMap[src]

type Error = ConfError

The type returned in the event of a conversion error.

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> 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.

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