pub trait AsColumnFamilyRef {
// Required method
fn inner(&self) -> *mut rocksdb_column_family_handle_t;
// Provided methods
fn id(&self) -> u32 { ... }
fn name(&self) -> Vec<u8> ⓘ { ... }
}Expand description
Utility trait to accept both supported references to ColumnFamily
(&ColumnFamily and BoundColumnFamily)
Required Methods§
fn inner(&self) -> *mut rocksdb_column_family_handle_t
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".