pub trait SnapshotVecDelegate {
    type Value;
    type Undo;

    fn reverse(values: &mut Vec<Self::Value>, action: Self::Undo);
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors