Trait IioProxyInterface

Source
pub trait IioProxyInterface: Send + Sync {
    type GetIioValueResponseFut: Future<Output = Result<IioGetIioValueResult, Error>> + Send;

    // Required method
    fn get_iio_value(&self, label: &str) -> Self::GetIioValueResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn get_iio_value(&self, label: &str) -> Self::GetIioValueResponseFut

Implementors§