Struct redo::Record[][src]

pub struct Record<R, C: Command<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 {
    type Error = Box<dyn error::Error>;

    fn apply(&mut self, s: &mut String) -> Result<(), Self::Error> {
        s.push(self.0);
        Ok(())
    }

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

fn main() -> Result<(), Error<String, Add>> {
    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, C: Command<R>> Record<R, C>
[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 this limit is reached it will start popping of commands at the beginning of the record when new commands are applied. No limit is set by default which means it may grow indefinitely.

If 0 < 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 on top of the record and executes its apply method. The command is merged with the previous top command if merge does not return None.

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 applying 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.

impl<R, C: Command<R> + ToString> Record<R, C>
[src]

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

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

Trait Implementations

impl<R: Default, C: Command<R>> Default for Record<R, C>
[src]

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

impl<R, C: Command<R>> AsRef<R> for Record<R, C>
[src]

Performs the conversion.

impl<R, C: Command<R>> AsMut<R> for Record<R, C>
[src]

Performs the conversion.

impl<R, C: Command<R>> From<R> for Record<R, C>
[src]

Performs the conversion.

impl<R: Debug, C: Command<R> + Debug> Debug for Record<R, C>
[src]

Formats the value using the given formatter. Read more

impl<R, C: Command<R> + Display> Display for Record<R, C>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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