pub trait AsColumnFamilyRef {
    fn inner(&self) -> *mut rocksdb_column_family_handle_t;
}
Expand description

Utility trait to accept both supported references to ColumnFamily (&ColumnFamily and BoundColumnFamily)

Required methods

Implementors