pub trait DisplayPowerProxyInterface: Send + Sync {
    type SetDisplayPowerResponseFut: Future<Output = Result<DisplayPowerSetDisplayPowerResult, Error>> + Send;

    // Required method
    fn set_display_power(
        &self,
        power_on: bool
    ) -> Self::SetDisplayPowerResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§