Trait ted::history::Undo [] [src]

pub trait Undo {
    type Undo;
    fn undo(&self) -> Self::Undo;
}

If an Undo's Undo is itself an Undo, its undo() must produce the initial Undo. :P

Associated Types

Required Methods

Implementors