[][src]Struct undo::History

pub struct History<R> { /* fields omitted */ }

A history of commands.

Unlike Record which maintains a linear undo history, History maintains an undo tree containing every edit made to the receiver. By switching between different branches in the tree, the user can get to any previous state of the receiver.

Examples

let mut history = History::default();
history.apply(Add('a'))?;
history.apply(Add('b'))?;
history.apply(Add('c'))?;
let abc = history.root();
history.go_to(abc, 1).unwrap()?;
history.apply(Add('f'))?;
history.apply(Add('g'))?;
assert_eq!(history.as_receiver(), "afg");
history.go_to(abc, 3).unwrap()?;
assert_eq!(history.as_receiver(), "abc");

Methods

impl<R> History<R>[src]

pub fn new(receiver: impl Into<R>) -> History<R>[src]

Returns a new history.

pub fn builder() -> HistoryBuilder<R>[src]

Returns a builder for a history.

pub fn reserve(&mut self, additional: usize)[src]

Reserves capacity for at least additional more commands.

Panics

Panics if the new capacity overflows usize.

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

Returns the capacity of the history.

pub fn shrink_to_fit(&mut self)[src]

Shrinks the capacity of the history as much as possible.

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

Returns the number of commands in the current branch of the history.

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

Returns true if the current branch of the history is empty.

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

Returns the limit of the history.

pub fn set_limit(&mut self, limit: usize) -> usize[src]

Sets the limit of the history and returns the new limit.

If this limit is reached it will start popping of commands at the beginning of the history when new commands are applied. No limit is set by default which means it may grow indefinitely.

If limit < len the first commands will be removed until len == limit. However, if the current active command is going to be removed, the limit is instead adjusted to len - active so the active command is not removed.

Panics

Panics if limit is 0.

pub fn connect(
    &mut self,
    slot: impl FnMut(Signal) + 'static
) -> Option<impl FnMut(Signal) + 'static> where
    R: 'static, 
[src]

Sets how the signal should be handled when the state changes.

The previous slot is returned if it exists.

pub fn disconnect(&mut self) -> Option<impl FnMut(Signal) + 'static> where
    R: 'static, 
[src]

Removes and returns the slot.

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

Returns true if the history can undo.

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

Returns true if the history can redo.

pub fn set_saved(&mut self, saved: bool)[src]

Marks the receiver as currently being in a saved or unsaved state.

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

Returns true if the receiver is in a saved state, false otherwise.

pub fn revert(&mut self) -> Option<Result> where
    R: 'static, 
[src]

Revert the changes done to the receiver since the saved state.

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

Returns the current branch.

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

Returns the position of the current command.

pub fn clear(&mut self)[src]

Removes all commands from the history without undoing them.

pub fn apply(&mut self, command: impl Command<R> + 'static) -> Result where
    R: 'static, 
[src]

Pushes the command to the top of the history and executes its apply method.

Errors

If an error occur when executing apply the error is returned.

pub fn undo(&mut self) -> Option<Result>[src]

Calls the undo method for the active command and sets the previous one as the new active one.

Errors

If an error occur when executing undo the error is returned.

pub fn redo(&mut self) -> Option<Result>[src]

Calls the redo method for the active command and sets the next one as the new active one.

Errors

If an error occur when executing redo the error is returned.

pub fn go_to(&mut self, branch: usize, current: usize) -> Option<Result> where
    R: 'static, 
[src]

Repeatedly calls undo or redo until the command in branch at current is reached.

Errors

If an error occur when executing undo or redo the error is returned.

pub fn time_travel(&mut self, to: &DateTime<impl TimeZone>) -> Option<Result>[src]

Go back or forward in the history to the command that was made closest to the datetime provided.

This method does not jump across branches.

pub fn extend<C: Command<R> + 'static>(
    &mut self,
    commands: impl IntoIterator<Item = C>
) -> Result where
    R: 'static, 
[src]

Applies each command in the iterator.

Errors

If an error occur when executing apply the error is returned and the remaining commands in the iterator are discarded.

pub fn checkpoint(&mut self) -> Checkpoint<History<R>, R>[src]

Returns a checkpoint.

pub fn queue(&mut self) -> Queue<History<R>, R>[src]

Returns a queue.

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

Returns the string of the command which will be undone in the next call to undo.

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

Returns the string of the command which will be redone in the next call to redo.

pub fn display(&self) -> Display<Self>[src]

Returns a structure for configurable formatting of the history.

pub fn as_receiver(&self) -> &R[src]

Returns a reference to the receiver.

pub fn as_mut_receiver(&mut self) -> &mut R[src]

Returns a mutable reference to the receiver.

This method should only be used when doing changes that should not be able to be undone.

pub fn into_receiver(self) -> R[src]

Consumes the history, returning the receiver.

Trait Implementations

impl<R: Default> Default for History<R>[src]

impl<R> AsRef<R> for History<R>[src]

impl<R> AsMut<R> for History<R>[src]

impl<R> From<R> for History<R>[src]

impl<R> From<Record<R>> for History<R>[src]

impl<R> From<History<R>> for Record<R>[src]

impl<R: Debug> Debug for History<R>[src]

impl<R> Display for History<R>[src]

Auto Trait Implementations

impl<R> !Sync for History<R>

impl<R> Unpin for History<R> where
    R: Unpin

impl<R> !Send for History<R>

impl<R> !UnwindSafe for History<R>

impl<R> !RefUnwindSafe for History<R>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]