pub trait SetOptions {
// Required methods
fn set_options(&self, opts: &[(&str, &str)]) -> Result<(), Error>;
fn set_options_cf(
&self,
cf: &ColumnFamily,
opts: &[(&str, &str)],
) -> Result<(), Error>;
}
pub trait SetOptions {
// Required methods
fn set_options(&self, opts: &[(&str, &str)]) -> Result<(), Error>;
fn set_options_cf(
&self,
cf: &ColumnFamily,
opts: &[(&str, &str)],
) -> Result<(), Error>;
}