pub struct Vehicle {
pub profile: Profile,
pub costs: Costs,
pub dimens: Dimensions,
pub details: Vec<VehicleDetail>,
}Expand description
Represents a vehicle.
Fields§
§profile: ProfileA vehicle profile.
costs: CostsSpecifies operating costs for vehicle.
dimens: DimensionsDimensions which contains extra work requirements.
details: Vec<VehicleDetail>Specifies vehicle details.