pub struct SensorAdditionalSettings {
pub stop: bool,
pub sensor_test_data: Option<Vec<u64>>,
pub sensor_test_time: Option<Instant>,
pub sensor_test_index: usize,
pub pin: Option<IoPin>,
pub detection_stream_channel: Option<Sender<bool>>,
pub detections_receiver: Receiver<bool>,
}Fields§
§stop: bool§sensor_test_data: Option<Vec<u64>>§sensor_test_time: Option<Instant>§sensor_test_index: usize§pin: Option<IoPin>§detection_stream_channel: Option<Sender<bool>>§detections_receiver: Receiver<bool>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SensorAdditionalSettings
impl !RefUnwindSafe for SensorAdditionalSettings
impl Send for SensorAdditionalSettings
impl Sync for SensorAdditionalSettings
impl Unpin for SensorAdditionalSettings
impl !UnwindSafe for SensorAdditionalSettings
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