pub struct Costs {
    pub fixed: Float,
    pub per_distance: Float,
    pub per_driving_time: Float,
    pub per_waiting_time: Float,
    pub per_service_time: Float,
}Expand description
Represents operating costs for driver and vehicle.
Fields§
§fixed: FloatA fixed cost to use an actor.
per_distance: FloatCost per distance unit.
per_driving_time: FloatCost per driving time unit.
per_waiting_time: FloatCost per waiting time unit.
per_service_time: FloatCost per service time unit.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Costs
impl RefUnwindSafe for Costs
impl Send for Costs
impl Sync for Costs
impl Unpin for Costs
impl UnwindSafe for Costs
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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