pub trait DeviceImplExt: DeviceImpl {
// Provided methods
fn parent_create_element(
&self,
name: Option<&str>,
) -> Result<Element, LoggableError> { ... }
fn parent_reconfigure_element(
&self,
element: &Element,
) -> Result<(), LoggableError> { ... }
}
Provided Methods§
fn parent_create_element( &self, name: Option<&str>, ) -> Result<Element, LoggableError>
fn parent_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.