pub trait SaveDelegateImpl: ObjectImpl {
    // Provided method
    fn save_future(
        &self,
        delegate: &Self::Type
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static>> { ... }
}

Provided Methods§

source

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

Implementors§