pub trait FactoryResetProxyInterface: Send + Sync {
type GetEnabledResponseFut: Future<Output = Result<bool, Error>> + Send;
// Required method
fn get_enabled(&self) -> Self::GetEnabledResponseFut;
}
pub trait FactoryResetProxyInterface: Send + Sync {
type GetEnabledResponseFut: Future<Output = Result<bool, Error>> + Send;
// Required method
fn get_enabled(&self) -> Self::GetEnabledResponseFut;
}