Struct vrp_core::models::Lock[][src]

pub struct Lock {
    pub condition: Arc<dyn Fn(&Actor) -> bool + Sync + Send>,
    pub details: Vec<LockDetail>,
    pub is_lazy: bool,
}

Contains information about jobs locked to specific actors.

Fields

condition: Arc<dyn Fn(&Actor) -> bool + Sync + Send>

Specifies condition when locked jobs can be assigned to specific actor

details: Vec<LockDetail>

Specifies lock details.

is_lazy: bool

Specifies whether route is created or not in solution from beginning. True means that route is not created till evaluation.

Implementations

impl Lock[src]

pub fn new(
    condition: Arc<dyn Fn(&Actor) -> bool + Sync + Send>,
    details: Vec<LockDetail>,
    is_lazy: bool
) -> Self
[src]

Creates a new instance of Lock.

Auto Trait Implementations

impl !RefUnwindSafe for Lock

impl Send for Lock

impl Sync for Lock

impl Unpin for Lock

impl !UnwindSafe for Lock

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,