pub trait RebootWatcherProxyInterface: Send + Sync {
type OnRebootResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_reboot(&self, options: &RebootOptions) -> Self::OnRebootResponseFut;
}
pub trait RebootWatcherProxyInterface: Send + Sync {
type OnRebootResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_reboot(&self, options: &RebootOptions) -> Self::OnRebootResponseFut;
}