pub trait InitableImplExt: Sealed + ObjectSubclass {
// Provided method
fn parent_init(
&self,
cancellable: Option<&Cancellable>,
) -> Result<(), Error> { ... }
}
Provided Methods§
fn parent_init(&self, cancellable: Option<&Cancellable>) -> Result<(), Error>
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.