pub trait AudioAggregatorPadExt: IsA<AudioAggregatorPad> + Sealed + 'static {
    // Provided methods
    fn is_qos_messages(&self) -> bool { ... }
    fn set_qos_messages(&self, qos_messages: bool) { ... }
    fn connect_qos_messages_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all AudioAggregatorPad methods.

§Implementors

AudioAggregatorConvertPad, AudioAggregatorPad

Provided Methods§

source

fn is_qos_messages(&self) -> bool

Emit QoS messages when dropping buffers.

source

fn set_qos_messages(&self, qos_messages: bool)

Emit QoS messages when dropping buffers.

source

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

Object Safety§

This trait is not object safe.

Implementors§