pub struct PhevSimulationDataForLabel {
pub cd_fuel_consumed_kwh: f64,
pub cd_soc_start: f64,
pub cd_soc_end: f64,
pub cyc_dist_mi: f64,
pub cd_kwh_per_mi: f64,
pub cd_mpg: f64,
pub cs_fuel_consumed_kwh: f64,
pub cs_ess_energy_kwh: f64,
pub cs_kwh_per_mi: f64,
pub cs_mpg: f64,
pub cs_min_soc: f64,
pub cs_fs_energy_capacity_kwh: f64,
}Fields§
§cd_fuel_consumed_kwh: f64§cd_soc_start: f64§cd_soc_end: f64§cyc_dist_mi: f64§cd_kwh_per_mi: f64§cd_mpg: f64§cs_fuel_consumed_kwh: f64§cs_ess_energy_kwh: f64§cs_kwh_per_mi: f64§cs_mpg: f64§cs_min_soc: f64§cs_fs_energy_capacity_kwh: f64Auto Trait Implementations§
impl Freeze for PhevSimulationDataForLabel
impl RefUnwindSafe for PhevSimulationDataForLabel
impl Send for PhevSimulationDataForLabel
impl Sync for PhevSimulationDataForLabel
impl Unpin for PhevSimulationDataForLabel
impl UnwindSafe for PhevSimulationDataForLabel
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more