[][src]Struct rustyline::config::Config

pub struct Config { /* fields omitted */ }

User preferences

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]

pub fn edit_mode(&self) -> EditMode[src]

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

Tell if lines are automatically added to the history.

By default, they are not.

pub fn bell_style(&self) -> BellStyle[src]

Bell style: beep, flash or nothing.

pub fn color_mode(&self) -> ColorMode[src]

Tell if colors should be enabled.

By default, they are except if stdout is not a TTY.

pub fn output_stream(&self) -> OutputStreamType[src]

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

Horizontal space taken by a tab.

Trait Implementations

impl Clone for Config[src]

impl Copy for Config[src]

impl Default for Config[src]

impl Eq for Config[src]

impl PartialEq<Config> for Config[src]

impl Debug for Config[src]

impl StructuralPartialEq for Config[src]

impl StructuralEq for Config[src]

Auto Trait Implementations

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

impl RefUnwindSafe for Config

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

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

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

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