Config

Struct Config 

Source
pub struct Config { /* private fields */ }
Expand description

User preferences

Implementations§

Source§

impl Config

Source

pub fn builder() -> Builder

Returns a Config builder.

Source

pub fn max_history_size(&self) -> usize

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

Source

pub fn history_duplicates(&self) -> HistoryDuplicates

Tell if lines which match the previous history entry are saved or not in the history list.

By default, they are ignored.

Source

pub fn history_ignore_space(&self) -> bool

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

By default, they are saved.

Source

pub fn completion_type(&self) -> CompletionType

Completion behaviour.

By default, CompletionType::Circular.

Source

pub fn completion_prompt_limit(&self) -> usize

When listing completion alternatives, only display one screen of possibilities at a time (used for CompletionType::List mode).

Source

pub fn completion_show_all_if_ambiguous(&self) -> bool

Directly show all alternatives when using list completion

By default, they are not, a second tab is needed

Source

pub fn keyseq_timeout(&self) -> Option<u16>

Duration (milliseconds) Rustyline will wait for a character when reading an ambiguous key sequence (used for EditMode::Vi mode on unix platform).

By default, no timeout (-1) or 500ms if EditMode::Vi is activated.

Source

pub fn edit_mode(&self) -> EditMode

Emacs or Vi mode

Source

pub fn auto_add_history(&self) -> bool

Tell if lines are automatically added to the history.

By default, they are not.

Source

pub fn bell_style(&self) -> BellStyle

Bell style: beep, flash or nothing.

Source

pub fn color_mode(&self) -> ColorMode

Tell if colors should be enabled.

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

Source

pub fn grapheme_cluster_mode(&self) -> GraphemeClusterMode

Tell if terminal supports grapheme clustering

Source

pub fn behavior(&self) -> Behavior

Whether to use stdio or not

By default, stdio is used.

Source

pub fn tab_stop(&self) -> u8

Horizontal space taken by a tab.

By default, 8.

Source

pub fn check_cursor_position(&self) -> bool

Check if cursor position is at leftmost before displaying prompt.

By default, we don’t check.

Source

pub fn indent_size(&self) -> u8

Indentation size used by indentation commands

By default, 2.

Source

pub fn enable_bracketed_paste(&self) -> bool

Bracketed paste on unix platform

By default, it’s enabled.

Source

pub fn enable_synchronized_output(&self) -> bool

Synchronized output on unix platform

By default, it’s enabled.

Source

pub fn enable_signals(&self) -> bool

Enable or disable signals in termios

By default, it’s disabled.

Trait Implementations§

Source§

impl Clone for Config

Source§

fn clone(&self) -> Config

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Config

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Config

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Config

Source§

fn eq(&self, other: &Config) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for Config

Source§

impl StructuralPartialEq for Config

Auto Trait Implementations§

§

impl Freeze for Config

§

impl RefUnwindSafe for Config

§

impl Send for Config

§

impl Sync for Config

§

impl Unpin for Config

§

impl UnwindSafe for Config

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.