pub enum ErsDeployMode {
None,
Low,
Medium,
High,
Overtake,
Hotlap,
}
Expand description
Deploy modes for the Energy Recovery System
The Energy Recovery System, or ERS, can be operated in different modes that determine how much energy is harvested under braking, and how much is used to accelerate the car.
Variants§
None
The Energy Recovery System is disabled or does not exist in the current car.
Low
The Energy Recovery System operates at a low setting, and harvest more energy than it consumes.
Medium
The Energy Recovery System operates at a medium setting, harvesting and deploying at a similar rate.
High
The Energy Recovery System operates at a high setting, and deploys more energy than it can harvest.
Overtake
The Energy Recovery System operates at a very high level, and deploys far more energy than it can harvest.
Hotlap
The Energy Recovery System operates at a level optimized for qualifying laps, which aims to deplete the batteries by the end of the lap.
Trait Implementations§
Source§impl Clone for ErsDeployMode
impl Clone for ErsDeployMode
Source§fn clone(&self) -> ErsDeployMode
fn clone(&self) -> ErsDeployMode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more