pub enum LockOrder {
Any,
Sequence,
Strict,
}Expand description
An enumeration which specifies how jobs should be ordered in tour.
Variants
Any
Jobs can be reshuffled in any order.
Sequence
Jobs cannot be reshuffled, but new job can be inserted in between.
Strict
Jobs cannot be reshuffled and no jobs can be inserted in between.
Auto Trait Implementations
impl RefUnwindSafe for LockOrder
impl Send for LockOrder
impl Sync for LockOrder
impl Unpin for LockOrder
impl UnwindSafe for LockOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more