trait IntoRocksDBType {
type Type;
// Required method
fn into_rocksdb(self) -> Self::Type;
}Expand description
An Into we can implement on foreign types
Required Associated Types§
Required Methods§
fn into_rocksdb(self) -> Self::Type
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".