pub trait GLBaseFilterImplExt: GLBaseFilterImpl {
// Provided methods
fn parent_gl_set_caps(
&self,
incaps: &Caps,
outcaps: &Caps,
) -> Result<(), LoggableError> { ... }
fn parent_gl_start(&self) -> Result<(), LoggableError> { ... }
fn parent_gl_stop(&self) { ... }
}
Provided Methods§
fn parent_gl_set_caps( &self, incaps: &Caps, outcaps: &Caps, ) -> Result<(), LoggableError>
fn parent_gl_start(&self) -> Result<(), LoggableError>
fn parent_gl_stop(&self)
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.