pub trait SaveDelegateImplExt: ObjectSubclass {
    // Required method
    fn parent_save_future(
        &self,
        delegate: &Self::Type
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static>>;
}

Required Methods§

source

fn parent_save_future( &self, delegate: &Self::Type ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static>>

Implementors§