pub trait InitableImplExt: ObjectSubclass {
    // Required method
    fn parent_init(
        &self,
        initable: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>;
}

Required Methods§

source

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

Implementors§

source§

impl<T> InitableImplExt for Twhere T: InitableImpl,