pub trait BufferPoolExt: 'static {
    fn options(&self) -> Vec<GString> ;
    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§