Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Builder in datafusion_rustyline::config - Rust
[go: Go Back, main page]

Struct Builder

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

Configuration builder

Implementations§

Source§

impl Builder

Source

pub fn new() -> Builder

Source

pub fn max_history_size(self, max_size: usize) -> Builder

Set the maximum length for the history.

Source

pub fn history_ignore_dups(self, yes: bool) -> Builder

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, yes: bool) -> Builder

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, completion_type: CompletionType) -> Builder

Set completion_type.

Source

pub fn completion_prompt_limit(self, completion_prompt_limit: usize) -> Builder

The number of possible completions that determines when the user is asked whether the list of possibilities should be displayed.

Source

pub fn keyseq_timeout(self, keyseq_timeout_ms: i32) -> Builder

Timeout for ambiguous key sequences in milliseconds. Currently, it is used only to distinguish a single ESC from an ESC sequence. After seeing an ESC key, wait at most keyseq_timeout_ms for another byte.

Source

pub fn edit_mode(self, edit_mode: EditMode) -> Builder

Choose between Emacs or Vi mode.

Source

pub fn auto_add_history(self, yes: bool) -> Builder

Tell if lines are automatically added to the history.

By default, they are not.

Source

pub fn build(self) -> Config

Trait Implementations§

Source§

impl Debug for Builder

Source§

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

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

impl Default for Builder

Source§

fn default() -> Builder

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

Auto Trait Implementations§

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> 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, 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.