pub enum SimulationDataForLabel {
ConvOrHev {
veh_year: u32,
udds_mpgge: f64,
hwy_mpgge: f64,
fs_energy_capacity_kwh: f64,
},
Bev {
veh_year: u32,
udds_kwh_per_mi: f64,
hwy_kwh_per_mi: f64,
bev_energy_capacity_kwh: f64,
},
Phev {
veh_year: u32,
info: PhevVehicleInfo,
udds: PhevSimulationDataForLabel,
hwy: PhevSimulationDataForLabel,
},
}Variants§
Auto Trait Implementations§
impl Freeze for SimulationDataForLabel
impl RefUnwindSafe for SimulationDataForLabel
impl Send for SimulationDataForLabel
impl Sync for SimulationDataForLabel
impl Unpin for SimulationDataForLabel
impl UnsafeUnpin for SimulationDataForLabel
impl UnwindSafe for SimulationDataForLabel
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