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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§