pub enum RunMethod {
No,
InPlace,
OutOfPlace(usize),
Exclusive(usize),
}
Expand description
Method you want to run the your run_bash_script
Variants§
No
Just compile, do not run
InPlace
Compile and run in the same thread/workspace
OutOfPlace(usize)
Compile and run in different threads/workspaces, usize
is the number of threads to run
Exclusive(usize)
After compile, run in a usize
thread/workspace
Trait Implementations§
impl Copy for RunMethod
impl StructuralPartialEq for RunMethod
Auto Trait Implementations§
impl Freeze for RunMethod
impl RefUnwindSafe for RunMethod
impl Send for RunMethod
impl Sync for RunMethod
impl Unpin for RunMethod
impl UnwindSafe for RunMethod
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