[][src]Struct tcalc_rustyline::history::History

pub struct History { /* fields omitted */ }

Current state of the history.

Methods

impl History[src]

pub fn new() -> History[src]

pub fn with_config(config: Config) -> History[src]

pub fn get(&self, index: usize) -> Option<&String>[src]

Return the history entry at position index, starting from 0.

pub fn last(&self) -> Option<&String>[src]

Return the last history entry (i.e. previous command)

pub fn add<S: AsRef<str> + Into<String>>(&mut self, line: S) -> bool[src]

Add a new entry in the history.

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

Returns the number of entries in the history.

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

Returns true if the history has no entry.

pub fn set_max_len(&mut self, len: usize)[src]

Set the maximum length for the history. This function can be called even if there is already some history, the function will make sure to retain just the latest len elements if the new history length value is smaller than the amount of items already inside the history.

pub fn save<P: AsRef<Path> + ?Sized>(&self, path: &P) -> Result<()>[src]

Save the history in the specified file.

pub fn load<P: AsRef<Path> + ?Sized>(&mut self, path: &P) -> Result<()>[src]

Load the history from the specified file.

Failure

Will return Err if path does not already exist.

pub fn clear(&mut self)[src]

Clear history

pub fn search(&self, term: &str, start: usize, dir: Direction) -> Option<usize>[src]

Search history (start position inclusive [0, len-1]) Return the absolute index of the nearest history entry that matches term. Return None if no entry contains term between [start, len -1] for forward search or between [0, start] for reverse search.

Important traits for Iter<'a>
pub fn iter(&self) -> Iter[src]

Return a forward iterator.

Trait Implementations

impl<'a> IntoIterator for &'a History[src]

type Item = &'a String

The type of the elements being iterated over.

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?

impl Index<usize> for History[src]

type Output = String

The returned type after indexing.

Auto Trait Implementations

impl Send for History

impl Unpin for History

impl Sync for History

impl UnwindSafe for History

impl RefUnwindSafe for History

Blanket Implementations

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]