gstreamer_base::auto::aggregator_pad

Trait AggregatorPadExt

Source
pub trait AggregatorPadExt:
    IsA<AggregatorPad>
    + Sealed
    + 'static {
    // Provided methods
    fn drop_buffer(&self) -> bool { ... }
    fn is_eos(&self) -> bool { ... }
    fn peek_buffer(&self) -> Option<Buffer> { ... }
    fn pop_buffer(&self) -> Option<Buffer> { ... }
    fn connect_buffer_consumed<F: Fn(&Self, &Buffer) + Send + Sync + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn drop_buffer(&self) -> bool

Source

fn is_eos(&self) -> bool

Source

fn peek_buffer(&self) -> Option<Buffer>

Source

fn pop_buffer(&self) -> Option<Buffer>

Source

fn connect_buffer_consumed<F: Fn(&Self, &Buffer) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId

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.

Implementors§