pub trait AudioAggregatorPadExt: IsA<AudioAggregatorPad> + '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
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.