pub type RawHistoryTreePartsCf<'cf> = TypedColumnFamily<'cf, RawBytes, HistoryTreeParts>;
Expand description
A generic raw key type for reading history trees from the database, regardless of the database version. This type should not be used in new code.
Aliased Type§
struct RawHistoryTreePartsCf<'cf> {
db: DiskDb,
cf: &'cf ColumnFamily,
_cf_name: String,
_marker: PhantomData<(RawBytes, HistoryTreeParts)>,
}
Fields§
§db: DiskDb
The database.
cf: &'cf ColumnFamily
The column family reference in the database.
_cf_name: String
The column family name, only used for debugging and equality checking.
_marker: PhantomData<(RawBytes, HistoryTreeParts)>
A marker type used to bind the key and value types to the struct.