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