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