Enum vrp_core::models::LockOrder [−][src]
pub enum LockOrder {
Any,
Sequence,
Strict,
}Expand description
An enumeration which specifies how jobs should be ordered in tour.
Variants
Jobs can be reshuffled in any order.
Jobs cannot be reshuffled, but new job can be inserted in between.
Jobs cannot be reshuffled and no jobs can be inserted in between.
Auto Trait Implementations
impl RefUnwindSafe for LockOrderimpl UnwindSafe for LockOrder