pub trait RebootMethodsWatcherProxyInterface: Send + Sync {
    type OnRebootResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn on_reboot(&self, reason: RebootReason) -> Self::OnRebootResponseFut;
}

Required Associated Types§

source

type OnRebootResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

Implementors§