pub enum RunMode {
Unlinked,
Once,
Circular,
}
Expand description
The mode in which to run the linked list.
Variants§
Unlinked
List items are not linked together.
Once
The list is linked sequentially and only run once.
Circular
The list is linked sequentially, and the end of the list is linked to the beginning.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunMode
impl RefUnwindSafe for RunMode
impl Send for RunMode
impl Sync for RunMode
impl Unpin for RunMode
impl UnwindSafe for RunMode
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