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

Provided Methods§

source

fn parent_init(&self, cancellable: Option<&Cancellable>) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> InitableImplExt for T
where T: InitableImpl,