pub trait DisplayBacklightProxyInterface: Send + Sync {
type SetMinimumRgbResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_minimum_rgb(&self, minimum_rgb: u8) -> Self::SetMinimumRgbResponseFut;
}
pub trait DisplayBacklightProxyInterface: Send + Sync {
type SetMinimumRgbResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_minimum_rgb(&self, minimum_rgb: u8) -> Self::SetMinimumRgbResponseFut;
}