pub trait THbaseSyncClientExt
where Self: THbaseSyncClient,
{ // Required methods fn table_exists(&mut self, _: &str) -> Result<bool>; fn put( &mut self, _: &str, _: Vec<BatchMutation>, _: Option<i64>, _: Option<Attributes> ) -> Result<()>; fn remove_table(&mut self, _: &str) -> Result<()>; }

Required Methods§

source

fn table_exists(&mut self, _: &str) -> Result<bool>

source

fn put( &mut self, _: &str, _: Vec<BatchMutation>, _: Option<i64>, _: Option<Attributes> ) -> Result<()>

source

fn remove_table(&mut self, _: &str) -> Result<()>

Implementors§