pub trait Flush { // Required method fn flush_opt(&self, flushopts: &FlushOptions) -> Result<(), Error>; // Provided method fn flush(&self) -> Result<(), Error> { ... } }
Flushes database memtables to SST files on the disk using default options.