pub trait SetPowerLimit {
// Required method
fn set_power_limit<'life0, 'async_trait>(
&'life0 self,
limit: Power,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}