[][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

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_target(), "");
queue.commit()?;
assert_eq!(record.as_target(), "abc");

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 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: 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<'_, C: Command, F: FnMut(Signal)> Queue<'_, Record<C, F>, C>[src]

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

Queues a go_to action.

pub fn commit(self) -> Result<C>[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<C, F>, C>[src]

Returns a checkpoint.

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

Returns a queue.

pub fn as_target(&self) -> &C::Target[src]

Returns a reference to the target.

pub fn as_mut_target(&mut self) -> &mut C::Target[src]

Returns a mutable reference to the target.

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

impl<'_, C: Command, F: FnMut(Signal)> Queue<'_, History<C, F>, C>[src]

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

Queues a go_to action.

pub fn commit(self) -> Result<C>[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<C, F>, C>[src]

Returns a checkpoint.

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

Returns a queue.

pub fn as_target(&self) -> &C::Target[src]

Returns a reference to the target.

pub fn as_mut_target(&mut self) -> &mut C::Target[src]

Returns a mutable reference to the target.

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

Trait Implementations

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]

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

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

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]