Struct vrp_core::models::problem::ActorDetail
source · pub struct ActorDetail {
pub start: Option<VehiclePlace>,
pub end: Option<VehiclePlace>,
pub time: TimeWindow,
}Expand description
Represents an actor detail: exact start/end location and operating time.
Fields§
§start: Option<VehiclePlace>A place where actor’s vehicle starts.
end: Option<VehiclePlace>A place where the actor’s vehicle ends.
time: TimeWindowTime window when an actor allowed working.
Trait Implementations§
source§impl Clone for ActorDetail
impl Clone for ActorDetail
source§fn clone(&self) -> ActorDetail
fn clone(&self) -> ActorDetail
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Hash for ActorDetail
impl Hash for ActorDetail
source§impl PartialEq for ActorDetail
impl PartialEq for ActorDetail
source§fn eq(&self, other: &ActorDetail) -> bool
fn eq(&self, other: &ActorDetail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ActorDetail
impl StructuralPartialEq for ActorDetail
Auto Trait Implementations§
impl Freeze for ActorDetail
impl RefUnwindSafe for ActorDetail
impl Send for ActorDetail
impl Sync for ActorDetail
impl Unpin for ActorDetail
impl UnwindSafe for ActorDetail
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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