Struct xplr::config::GeneralConfig[][src]

pub struct GeneralConfig {
    pub show_hidden: Option<bool>,
    pub read_only: Option<bool>,
    pub cursor: UiElement,
    pub prompt: UiElement,
    pub logs: LogsConfig,
    pub table: TableConfig,
    pub default_ui: UiConfig,
    pub focus_ui: UiConfig,
    pub selection_ui: UiConfig,
    pub sort_and_filter_ui: SortAndFilterUi,
    pub initial_sorting: Option<IndexSet<NodeSorterApplicable>>,
}

Fields

show_hidden: Option<bool>read_only: Option<bool>cursor: UiElementprompt: UiElementlogs: LogsConfigtable: TableConfigdefault_ui: UiConfigfocus_ui: UiConfigselection_ui: UiConfigsort_and_filter_ui: SortAndFilterUiinitial_sorting: Option<IndexSet<NodeSorterApplicable>>

Implementations

impl GeneralConfig[src]

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

Trait Implementations

impl Clone for GeneralConfig[src]

impl Debug for GeneralConfig[src]

impl Default for GeneralConfig[src]

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

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