pub trait AudioFilterImpl: BaseTransformImpl + ObjectSubclass<Type: IsA<AudioFilter>> {
// Provided methods
fn allowed_caps() -> &'static Caps { ... }
fn setup(&self, info: &AudioInfo) -> Result<(), LoggableError> { ... }
}
Provided Methods§
fn allowed_caps() -> &'static Caps
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.