pub trait BootControllerProxyInterface: Send + Sync {
type NotifyResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn notify(&self) -> Self::NotifyResponseFut;
}Required Associated Types§
Required Methods§
fn notify(&self) -> Self::NotifyResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".