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

Required Methods§

source

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

Implementors§