pub struct Lfe {
pub fuel_rate: Option<f64>,
pub instantaneous_fuel_economy: Option<f64>,
}Expand description
Decoded Fuel Economy - Liquid (PGN 65266).
Fields are None when the ECU reports “not available” (0xFF/0xFFFF sentinel).
Fields§
§fuel_rate: Option<f64>Engine fuel rate in L/h. SPN 183, bytes 1-2.
instantaneous_fuel_economy: Option<f64>Instantaneous fuel economy in km/L. SPN 184, bytes 3-4.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lfe
impl RefUnwindSafe for Lfe
impl Send for Lfe
impl Sync for Lfe
impl Unpin for Lfe
impl UnsafeUnpin for Lfe
impl UnwindSafe for Lfe
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