pub enum CalibratorRequest {
Calibrate {
data: Rgbc,
responder: CalibratorCalibrateResponder,
},
}
Expand description
Calibrator
is responsible for calibrating the raw data that comes from the
product-configured light sensor. It is only intended to be used internally.
Variants§
Calibrate
Implementations§
Source§impl CalibratorRequest
impl CalibratorRequest
pub fn into_calibrate(self) -> Option<(Rgbc, CalibratorCalibrateResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CalibratorRequest
impl !RefUnwindSafe for CalibratorRequest
impl Send for CalibratorRequest
impl Sync for CalibratorRequest
impl Unpin for CalibratorRequest
impl !UnwindSafe for CalibratorRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more