Trait solana_ledger::blockstore_db::Column[][src]

pub trait Column {
    type Index;
    fn key(index: Self::Index) -> Vec<u8>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn index(key: &[u8]) -> Self::Index;
fn primary_index(index: Self::Index) -> u64;
fn as_index(slot: Slot) -> Self::Index; fn key_size() -> usize { ... }
fn slot(index: Self::Index) -> Slot { ... } }

Associated Types

Required methods

Provided methods

Implementors