Struct rocksdb::checkpoint::Checkpoint [−][src]
pub struct Checkpoint { /* fields omitted */ }
Database’s checkpoint object. Used to create checkpoints of the specified DB from time to time.
Implementations
impl Checkpoint
[src]
impl Checkpoint
[src]pub fn new(db: &DB) -> Result<Checkpoint, Error>
[src]
Creates new checkpoint object for specific DB.
Does not actually produce checkpoints, call .create_checkpoint()
method to produce
a DB checkpoint.
pub fn create_checkpoint<P: AsRef<Path>>(&self, path: P) -> Result<(), Error>
[src]
Creates new physical DB checkpoint in directory specified by path
.
Trait Implementations
impl Drop for Checkpoint
[src]
impl Drop for Checkpoint
[src]