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