pub trait CalibratorProxyInterface: Send + Sync {
    type CalibrateResponseFut: Future<Output = Result<CalibratorCalibrateResult, Error>> + Send;

    // Required method
    fn calibrate(&self, data: &Rgbc) -> Self::CalibrateResponseFut;
}

Required Associated Types§

Required Methods§

source

fn calibrate(&self, data: &Rgbc) -> Self::CalibrateResponseFut

Implementors§