Enum ena::snapshot_vec::UndoLog [] [src]

pub enum UndoLog<D: SnapshotVecDelegate> {
    OpenSnapshot,
    CommittedSnapshot,
    NewElem(usize),
    SetElem(usize, D::Value),
    Other(D::Undo),
}

Variants

Indicates where a snapshot started.

Indicates a snapshot that has been committed.

New variable with given index was created.

Variable with given index was changed from the given value.

Extensible set of actions