[][src]Struct redo::Queue

pub struct Queue<'a, T, C> { /* fields omitted */ }

A command queue wrapper.

Wraps a record or history and gives it batch queue functionality. This allows the record or history to queue up commands and either cancel or apply them later.

Examples

struct Add(char);

impl Command<String> for Add {
    type Error = &'static str;

    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<(), &'static str> {
    let mut record = Record::default();
    let mut queue = record.queue();
    queue.apply(Add('a'));
    queue.apply(Add('b'));
    queue.apply(Add('c'));
    assert_eq!(queue.as_receiver(), "");
    queue.commit()?;
    assert_eq!(record.as_receiver(), "abc");
    Ok(())
}

Methods

impl<'a, T, C> Queue<'a, T, C>[src]

pub fn new(inner: &'a mut T) -> Queue<'a, T, C>[src]

Returns a queue.

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

Reserves capacity for at least additional more commands in the queue.

Panics

Panics if the new capacity overflows usize.

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

Returns the capacity of the queue.

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

Returns the number of commands in the queue.

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

Returns true if the queue is empty.

pub fn apply(&mut self, command: C)[src]

Queues an apply action.

pub fn undo(&mut self)[src]

Queues an undo action.

pub fn redo(&mut self)[src]

Queues a redo action.

pub fn cancel(self)[src]

Cancels the queued actions.

impl<R, C: Command<R>, '_> Queue<'_, Record<R, C>, C>[src]

pub fn go_to(&mut self, current: usize)[src]

Queues a go_to action.

pub fn commit(self) -> Result<(), C::Error>[src]

Applies the actions that is queued.

Errors

If an error occurs, it stops applying the actions and returns the error.

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

Returns a checkpoint.

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

Returns a queue.

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.

impl<R, C: Command<R>, '_> Queue<'_, History<R, C>, C>[src]

pub fn go_to(&mut self, branch: usize, current: usize)[src]

Queues a go_to action.

pub fn commit(self) -> Result<(), C::Error>[src]

Applies the actions that is queued.

Errors

If an error occurs, it stops applying the actions and returns the error.

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

Returns a checkpoint.

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

Returns a queue.

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.

Trait Implementations

impl<T, C, '_> Extend<C> for Queue<'_, T, C>[src]

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

impl<R, C: Command<R>, '_> AsMut<R> for Queue<'_, History<R, C>, C>[src]

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

impl<R, C: Command<R>, '_> AsRef<R> for Queue<'_, History<R, C>, C>[src]

impl<'a, T, C> From<&'a mut T> for Queue<'a, T, C>[src]

impl<'a, T: Debug, C: Debug> Debug for Queue<'a, T, C>[src]

Auto Trait Implementations

impl<'a, T, C> Send for Queue<'a, T, C> where
    C: Send,
    T: Send

impl<'a, T, C> Sync for Queue<'a, T, C> where
    C: Sync,
    T: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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