pub struct O2TestResult {
pub test_id: u8,
pub test_name: &'static str,
pub sensor: O2SensorLocation,
pub value: f64,
pub unit: &'static str,
}Expand description
Mode 05: O2 sensor monitoring test result (non-CAN only).
Fields§
§test_id: u8§test_name: &'static str§sensor: O2SensorLocation§value: f64§unit: &'static strTrait Implementations§
Source§impl Clone for O2TestResult
impl Clone for O2TestResult
Source§fn clone(&self) -> O2TestResult
fn clone(&self) -> O2TestResult
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 O2TestResult
impl RefUnwindSafe for O2TestResult
impl Send for O2TestResult
impl Sync for O2TestResult
impl Unpin for O2TestResult
impl UnsafeUnpin for O2TestResult
impl UnwindSafe for O2TestResult
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