[][src]Struct tcalc_rustyline::config::Config

pub struct Config { /* fields omitted */ }

Methods

impl Config[src]

pub fn builder() -> Builder[src]

pub fn max_history_size(&self) -> usize[src]

Tell the maximum length (i.e. number of entries) for the history.

pub fn history_duplicates(&self) -> HistoryDuplicates[src]

Tell if lines which match the previous history entry are saved or not in the history list. By default, they are ignored.

pub fn history_ignore_space(&self) -> bool[src]

Tell if lines which begin with a space character are saved or not in the history list. By default, they are saved.

pub fn completion_type(&self) -> CompletionType[src]

pub fn completion_prompt_limit(&self) -> usize[src]

pub fn keyseq_timeout(&self) -> i32[src]

Trait Implementations

impl PartialEq<Config> for Config[src]

impl Copy for Config[src]

impl Eq for Config[src]

impl Default for Config[src]

impl Clone for Config[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Config[src]

Auto Trait Implementations

impl Send for Config

impl Unpin for Config

impl Sync for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]