Struct undo::Record[][src]

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

A record of commands.

The record can roll the receivers state backwards and forwards by using the undo and redo methods. In addition, the record can notify the user about changes to the stack or the receiver through signal. The user can give the record a function that is called each time the state changes by using the builder.

Examples

#[derive(Debug)]
struct Add(char);

impl Command<String> for Add {
    fn apply(&mut self, s: &mut String) -> Result<(), Box<dyn Error + Send + Sync>> {
        s.push(self.0);
        Ok(())
    }

    fn undo(&mut self, s: &mut String) -> Result<(), Box<dyn Error + Send + Sync>> {
        self.0 = s.pop().ok_or("`s` is empty")?;
        Ok(())
    }
}

fn main() -> Result<(), Box<dyn Error>> {
    let mut record = Record::default();

    record.apply(Add('a'))?;
    record.apply(Add('b'))?;
    record.apply(Add('c'))?;

    assert_eq!(record.as_receiver(), "abc");

    record.undo().unwrap()?;
    record.undo().unwrap()?;
    record.undo().unwrap()?;

    assert_eq!(record.as_receiver(), "");

    record.redo().unwrap()?;
    record.redo().unwrap()?;
    record.redo().unwrap()?;

    assert_eq!(record.as_receiver(), "abc");

    Ok(())
}

Methods

impl<R> Record<R>
[src]

Returns a new record.

Returns a builder for a record.

Reserves capacity for at least additional more commands.

Panics

Panics if the new capacity overflows usize.

Returns the capacity of the record.

Returns the number of commands in the record.

Returns true if the record is empty.

Returns the limit of the record.

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

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.

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

Returns true if the record can undo.

Returns true if the record can redo.

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

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

Returns the position of the current command.

Removes all commands from the record without undoing them.

Pushes the command to the top of the record and executes its apply method. The command is merged with the previous top command if they have the same id.

All commands above the active one are removed and returned as an iterator.

Errors

If an error occur when executing apply the error is returned together with the command.

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 together with the command.

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 together with the command.

Repeatedly calls undo or redo until the command at cursor is reached.

Errors

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

Jump directly to the command at cursor and executes its undo or redo method.

This method can be used if the commands store the whole state of the receiver, and does not require the commands in between to be called to get the same result. Use go_to otherwise.

Errors

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

Returns a reference to the receiver.

Returns a mutable reference to the receiver.

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

Consumes the record, returning the receiver.

Trait Implementations

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

Returns the "default value" for a type. Read more

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<R> Send for Record<R> where
    R: Send

impl<R> Sync for Record<R> where
    R: Sync