pub trait BufferPoolExt {
    fn get_options(&self) -> Vec<String>;
    fn has_option(&self, option: &str) -> bool;
    fn is_active(&self) -> bool;
    fn set_active(&self, active: bool) -> Result<(), BoolError>;
    fn set_flushing(&self, flushing: bool);
}

Required Methods

Implementors