Struct undo::record::Queue[][src]

pub struct Queue<'a, A, F> { /* fields omitted */ }

Wraps a record and gives it batch queue functionality.

Examples

let mut string = String::new();
let mut record = Record::new();
let mut queue = record.queue();
queue.apply(Add('a'));
queue.apply(Add('b'));
queue.apply(Add('c'));
assert_eq!(string, "");
queue.commit(&mut string)?;
assert_eq!(string, "abc");

Implementations

impl<A: Action, F: FnMut(Signal)> Queue<'_, A, F>[src]

pub fn apply(&mut self, action: A)[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 commit(self, target: &mut A::Target) -> Result<A>[src]

Applies the queued actions.

Errors

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

pub fn cancel(self)[src]

Cancels the queued actions.

pub fn queue(&mut self) -> Queue<'_, A, F>[src]

Returns a queue.

pub fn checkpoint(&mut self) -> Checkpoint<'_, A, F>[src]

Returns a checkpoint.

Trait Implementations

impl<'a, A: Debug, F: Debug> Debug for Queue<'a, A, F>[src]

impl<'a, A, F> From<&'a mut Record<A, F>> for Queue<'a, A, F>[src]

Auto Trait Implementations

impl<'a, A, F> RefUnwindSafe for Queue<'a, A, F> where
    A: RefUnwindSafe,
    F: RefUnwindSafe

impl<'a, A, F> Send for Queue<'a, A, F> where
    A: Send,
    F: Send

impl<'a, A, F> Sync for Queue<'a, A, F> where
    A: Sync,
    F: Sync

impl<'a, A, F> Unpin for Queue<'a, A, F> where
    A: Unpin

impl<'a, A, F> !UnwindSafe for Queue<'a, A, F>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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