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: TimeWindow
Time 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 duplicate 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
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§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