History

Struct History 

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

Interface for querying and manipulating the shell’s recorded history of commands.

Implementations§

Source§

impl History

Source

pub fn import(reader: impl Read) -> Result<Self, Error>

Constructs a new History instance, with its contents initialized from the given readable stream. If errors are encountered reading lines from the stream, unreadable lines will be skipped but the call will still return successfully, with a warning logged. An error result will be returned only if an internal error occurs updating the history.

§Arguments
  • reader - The readable stream to import history from.
Source

pub fn get_by_id(&self, id: i64) -> Result<Option<&Item>, Error>

Tries to retrieve a history item by its unique identifier. Returns None if no item is found.

§Arguments
  • id - The unique identifier of the history item to retrieve.
Source

pub fn update_by_id(&mut self, id: i64, item: Item) -> Result<(), Error>

Replaces the history item with the given ID with a new item. Returns an error if the item cannot be updated.

§Arguments
  • id - The unique identifier of the history item to update.
  • item - The new history item to replace the old one.
Source

pub fn remove_nth_item(&mut self, n: usize) -> bool

Removes the nth item from the history. Returns the removed item, or None if no such item exists (i.e., because it was out of range).

Source

pub fn add(&mut self, item: Item) -> Result<i64, Error>

Adds a new history item. Returns the unique identifier of the newly added item.

§Arguments
  • item - The history item to add.
Source

pub fn delete_item_by_id(&mut self, id: i64) -> Result<(), Error>

Deletes a history item by its unique identifier. Returns an error if the item cannot be deleted.

§Arguments
  • id - The unique identifier of the history item to delete.
Source

pub fn clear(&mut self) -> Result<(), Error>

Clears all history items.

Source

pub fn flush( &mut self, history_file_path: impl AsRef<Path>, append: bool, unsaved_items_only: bool, write_timestamps: bool, ) -> Result<(), Error>

Flushes the history to backing storage (if relevant).

§Arguments
  • history_file_path - The path to the history file.
  • append - Whether to append to the file or overwrite it.
  • unsaved_items_only - Whether to only write unsaved items; if true, any items will be marked as “saved” once saved.
  • write_timestamps - Whether to write timestamps for each command line.
Source

pub fn search(&self, query: Query) -> Result<impl Iterator<Item = &Item>, Error>

Searches through history using the given query.

§Arguments
  • query - The query to use.
Source

pub fn iter(&self) -> impl Iterator<Item = &Item>

Returns an iterator over the history items.

Source

pub fn get(&self, index: usize) -> Option<&Item>

Retrieves the nth history item, if it exists. Returns None if no such item exists. Indexing is zero-based, with an index of 0 referencing the oldest item in the history.

§Arguments
  • index - The index of the history item to retrieve.
Source

pub fn count(&self) -> usize

Returns the number of items in the history.

Trait Implementations§

Source§

impl Clone for History

Source§

fn clone(&self) -> History

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 Default for History

Source§

fn default() -> History

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> 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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more