pub trait BootupWatcherProxyInterface: Send + Sync {
type WaitForBootupResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn wait_for_bootup(&self) -> Self::WaitForBootupResponseFut;
}
pub trait BootupWatcherProxyInterface: Send + Sync {
type WaitForBootupResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn wait_for_bootup(&self) -> Self::WaitForBootupResponseFut;
}