Enum datafusion_rustyline::config::HistoryDuplicates[][src]

pub enum HistoryDuplicates {
    AlwaysAdd,
    IgnoreConsecutive,
}

Variants

a line will not be added to the history if it matches the previous entry

Trait Implementations

impl Clone for HistoryDuplicates
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for HistoryDuplicates
[src]

impl Debug for HistoryDuplicates
[src]

Formats the value using the given formatter. Read more

impl PartialEq for HistoryDuplicates
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HistoryDuplicates
[src]

Auto Trait Implementations