pub trait CalibratorProxyInterface: Send + Sync {
type CalibrateResponseFut: Future<Output = Result<CalibratorCalibrateResult, Error>> + Send;
// Required method
fn calibrate(&self, data: &Rgbc) -> Self::CalibrateResponseFut;
}
pub trait CalibratorProxyInterface: Send + Sync {
type CalibrateResponseFut: Future<Output = Result<CalibratorCalibrateResult, Error>> + Send;
// Required method
fn calibrate(&self, data: &Rgbc) -> Self::CalibrateResponseFut;
}