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

Required methods

Implementors