pub trait CreateCheckpointObject {
// Required method
unsafe fn create_checkpoint_object_raw(
&self,
) -> Result<*mut rocksdb_checkpoint_t, Error>;
// Provided method
fn create_checkpoint_object(&self) -> Result<Checkpoint<'_>, Error> { ... }
}Required Methods§
unsafe fn create_checkpoint_object_raw( &self, ) -> Result<*mut rocksdb_checkpoint_t, Error>
Provided Methods§
fn create_checkpoint_object(&self) -> Result<Checkpoint<'_>, Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".