pub struct Status {
pub tec_ok: bool,
pub s8_ok: bool,
pub s7_ok: bool,
pub s6_ok: bool,
pub s5_ok: bool,
pub s4_ok: bool,
pub s3_ok: bool,
pub s2_ok: bool,
pub s1_ok: bool,
pub nr_sensors: u8,
}Expand description
Status information for a Gator packet.
Fields§
§tec_ok: boolTEC (Thermo-Electric Cooler) status
s8_ok: boolSensor 8 status
s7_ok: boolSensor 7 status
s6_ok: boolSensor 6 status
s5_ok: boolSensor 5 status
s4_ok: boolSensor 4 status
s3_ok: boolSensor 3 status
s2_ok: boolSensor 2 status
s1_ok: boolSensor 1 status
nr_sensors: u8Number of sensors present
Trait Implementations§
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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