pub struct Driver {
pub costs: Costs,
pub dimens: Dimensions,
pub details: Vec<DriverDetail>,
}Expand description
Represents a driver, person who drives Vehicle. Introduced to allow the following scenarios:
- reuse vehicle multiple times with different drivers
- solve best driver-vehicle match problem. NOTE: At the moment, it is not used.
Fields§
§costs: CostsSpecifies operating costs for driver.
dimens: DimensionsDimensions which contains extra work requirements.
details: Vec<DriverDetail>Specifies driver details.