pub enum Execution {
Serial,
Concurrent,
}
Expand description
Execution mode to use when performing an operation on SRV targets.
Variants§
Serial
Operations are performed serially (i.e. one after the other).
Concurrent
Operations are performed concurrently (i.e. all at once). Note that this does not imply parallelism–no additional tasks are spawned.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnwindSafe for Execution
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