pub enum InsertionPosition {
Any,
Concrete(usize),
Last,
}Expand description
Specifies allowed insertion position in route for the job.
Variants§
Any
Job can be inserted anywhere in the route.
Concrete(usize)
Job can be inserted only at the leg with the concrete index.
Last
Job can be inserted only to the end of the route.
Trait Implementations§
source§impl Clone for InsertionPosition
impl Clone for InsertionPosition
source§fn clone(&self) -> InsertionPosition
fn clone(&self) -> InsertionPosition
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 more