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
Provided Methods§
sourcefn is_qos_messages(&self) -> bool
fn is_qos_messages(&self) -> bool
Emit QoS messages when dropping buffers.
sourcefn set_qos_messages(&self, qos_messages: bool)
fn set_qos_messages(&self, qos_messages: bool)
Emit QoS messages when dropping buffers.
fn connect_qos_messages_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.