pub trait SingleVersionRemove: SingleVersionCommit {
// Provided methods
fn unset(&mut self, key: &EncodedKey, row: EncodedRow) -> Result<()> { ... }
fn remove(&mut self, key: &EncodedKey) -> Result<()> { ... }
}Provided Methods§
fn unset(&mut self, key: &EncodedKey, row: EncodedRow) -> Result<()>
fn remove(&mut self, key: &EncodedKey) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".