pub trait InitableImplExt: InitableImpl {
    // 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.