pub trait BufferPoolExt:
IsA<BufferPool>
+ Sealed
+ 'static {
// Provided methods
fn options(&self) -> Vec<GString> { ... }
fn has_option(&self, option: &str) -> bool { ... }
fn is_active(&self) -> bool { ... }
fn release_buffer(&self, buffer: Buffer) { ... }
fn set_active(&self, active: bool) -> Result<(), BoolError> { ... }
fn set_flushing(&self, flushing: bool) { ... }
}
Provided Methods§
fn options(&self) -> Vec<GString>
fn has_option(&self, option: &str) -> bool
fn is_active(&self) -> bool
fn release_buffer(&self, buffer: Buffer)
fn set_active(&self, active: bool) -> Result<(), BoolError>
fn set_flushing(&self, flushing: bool)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.