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