Struct xplr::config::BuiltinModesConfig[][src]

pub struct BuiltinModesConfig { /* fields omitted */ }

Implementations

impl BuiltinModesConfig[src]

pub fn extend(self, other: Self) -> Self[src]

pub fn get(&self, name: &str) -> Option<&Mode>[src]

pub fn default(&self) -> &Mode[src]

Get a reference to the builtin modes config’s default.

pub fn selection_ops(&self) -> &Mode[src]

Get a reference to the builtin modes config’s selection ops.

pub fn create(&self) -> &Mode[src]

Get a reference to the builtin modes config’s create.

pub fn create_directory(&self) -> &Mode[src]

Get a reference to the builtin modes config’s create directory.

pub fn create_file(&self) -> &Mode[src]

Get a reference to the builtin modes config’s create file.

pub fn number(&self) -> &Mode[src]

Get a reference to the builtin modes config’s number.

pub fn go_to(&self) -> &Mode[src]

Get a reference to the builtin modes config’s go to.

pub fn rename(&self) -> &Mode[src]

Get a reference to the builtin modes config’s rename.

pub fn delete(&self) -> &Mode[src]

Get a reference to the builtin modes config’s delete.

pub fn action(&self) -> &Mode[src]

Get a reference to the builtin modes config’s action.

pub fn search(&self) -> &Mode[src]

Get a reference to the builtin modes config’s search.

pub fn filter(&self) -> &Mode[src]

Get a reference to the builtin modes config’s filter.

pub fn relative_path_does_contain(&self) -> &Mode[src]

Get a reference to the builtin modes config’s relative path does contain.

pub fn relative_path_does_not_contain(&self) -> &Mode[src]

Get a reference to the builtin modes config’s relative path does not contain.

pub fn sort(&self) -> &Mode[src]

Get a reference to the builtin modes config’s sort.

Trait Implementations

impl Clone for BuiltinModesConfig[src]

impl Debug for BuiltinModesConfig[src]

impl Default for BuiltinModesConfig[src]

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

impl Serialize for BuiltinModesConfig[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> 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> 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.