Trait gstreamer_base::prelude::BufferPoolExt [−][src]
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
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)
Implementors
impl<O> BufferPoolExt for O where
O: IsA<BufferPool>,