[][src]Trait leveldb::database::snapshots::Snapshots

pub trait Snapshots<K: Key> {
    fn snapshot<'a>(&'a self) -> Snapshot<'a, K>;
}

Structs implementing the Snapshots trait can be snapshotted.

Required methods

fn snapshot<'a>(&'a self) -> Snapshot<'a, K>

Creates a snapshot and returns a struct representing it.

Loading content...

Implementors

impl<K: Key> Snapshots<K> for Database<K>[src]

Loading content...