pub trait MockRebootControllerProxyInterface: Send + Sync {
    type TriggerRebootResponseFut: Future<Output = Result<MockRebootControllerTriggerRebootResult, Error>> + Send;
    type CrashRebootChannelResponseFut: Future<Output = Result<MockRebootControllerCrashRebootChannelResult, Error>> + Send;

    // Required methods
    fn trigger_reboot(&self) -> Self::TriggerRebootResponseFut;
    fn crash_reboot_channel(&self) -> Self::CrashRebootChannelResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§