[][src]Trait sledis::table::TableReadStore

pub trait TableReadStore: ReadStore {
    fn table_get_meta(&self, name: &[u8]) -> Result<Meta, Self::Error>;
fn table_get(
        &self,
        name: &[u8],
        key: &[u8]
    ) -> Result<Option<IVec>, Self::Error>; }

Required methods

fn table_get_meta(&self, name: &[u8]) -> Result<Meta, Self::Error>

fn table_get(
    &self,
    name: &[u8],
    key: &[u8]
) -> Result<Option<IVec>, Self::Error>

Loading content...

Implementors

impl<S> TableReadStore for S where
    S: ReadStore,
    S::Error: From<Error>, 
[src]

Loading content...