pub struct ReadinessStatus {
pub mil_on: bool,
pub dtc_count: u8,
pub compression_ignition: bool,
pub monitors: Vec<MonitorStatus>,
}Expand description
Readiness monitor status (decoded from Mode 01 PID 01).
Fields§
§mil_on: bool§dtc_count: u8§compression_ignition: bool§monitors: Vec<MonitorStatus>Trait Implementations§
Source§impl Clone for ReadinessStatus
impl Clone for ReadinessStatus
Source§fn clone(&self) -> ReadinessStatus
fn clone(&self) -> ReadinessStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReadinessStatus
impl RefUnwindSafe for ReadinessStatus
impl Send for ReadinessStatus
impl Sync for ReadinessStatus
impl Unpin for ReadinessStatus
impl UnsafeUnpin for ReadinessStatus
impl UnwindSafe for ReadinessStatus
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