Trait DebugUtilsProxyInterface

Source
pub trait DebugUtilsProxyInterface: Send + Sync {
    type SetPowerStateResponseFut: Future<Output = Result<DebugUtilsSetPowerStateResult, Error>> + Send;

    // Required method
    fn set_power_state(
        &self,
        power_state: i64,
    ) -> Self::SetPowerStateResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn set_power_state(&self, power_state: i64) -> Self::SetPowerStateResponseFut

Implementors§