pub trait IioProxyInterface: Send + Sync {
type GetIioValueResponseFut: Future<Output = Result<IioGetIioValueResult, Error>> + Send;
// Required method
fn get_iio_value(&self, label: &str) -> Self::GetIioValueResponseFut;
}
pub trait IioProxyInterface: Send + Sync {
type GetIioValueResponseFut: Future<Output = Result<IioGetIioValueResult, Error>> + Send;
// Required method
fn get_iio_value(&self, label: &str) -> Self::GetIioValueResponseFut;
}