pub trait SaveDelegateExtManual {
    // Required method
    fn connect_save<F, R>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) -> R + 'static,
             R: Future<Output = Result<(), Error>> + 'static;
}

Required Methods§

source

fn connect_save<F, R>(&self, f: F) -> SignalHandlerIdwhere F: Fn(&Self) -> R + 'static, R: Future<Output = Result<(), Error>> + 'static,

Implementors§