pub trait DeviceImpl: GstObjectImpl + ObjectSubclass<Type: IsA<Device>> {
// Provided methods
fn create_element(
&self,
name: Option<&str>,
) -> Result<Element, LoggableError> { ... }
fn reconfigure_element(
&self,
element: &Element,
) -> Result<(), LoggableError> { ... }
}Provided Methods§
fn create_element(&self, name: Option<&str>) -> Result<Element, LoggableError>
fn reconfigure_element(&self, element: &Element) -> Result<(), LoggableError>
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.