[][src]Struct undo::Queue

pub struct Queue<'a, T, R> { /* 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

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");

Methods

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

pub fn new(inner: &'a mut T) -> Queue<'a, T, R>[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 shrink_to_fit(&mut self)[src]

Shrinks the capacity of the queue as much as possible.

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: impl Command<R> + 'static)[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> Queue<'_, Record<R>, R>[src]

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

Queues a go_to action.

pub fn commit(self) -> Result where
    R: 'static, 
[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>, R>[src]

Returns a checkpoint.

pub fn queue(&mut self) -> Queue<Record<R>, R>[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> Queue<'_, History<R>, R>[src]

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

Queues a go_to action.

pub fn commit(self) -> Result where
    R: 'static, 
[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>, R>[src]

Returns a checkpoint.

pub fn queue(&mut self) -> Queue<History<R>, R>[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<'_, R> AsRef<R> for Queue<'_, Record<R>, R>[src]

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

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

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

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

impl<'_, T, R: 'static, C: Command<R> + 'static> Extend<C> for Queue<'_, T, R>[src]

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

Auto Trait Implementations

impl<'a, T, R> !Send for Queue<'a, T, R>

impl<'a, T, R> !Sync for Queue<'a, T, R>

impl<'a, T, R> Unpin for Queue<'a, T, R>

impl<'a, T, R> !UnwindSafe for Queue<'a, T, R>

impl<'a, T, R> !RefUnwindSafe for Queue<'a, T, R>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[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]