[−][src]Struct run_script::types::ScriptOptions
Options available for invoking the script
Fields
runner: Option<String>Defines the requested runner (defaults to cmd in windows and sh for other platforms)
capture_output: boolFalse to print the output to the parent process, or capture and return the output (default)
exit_on_error: boolSets -e flag. Will exit on any error while running the script (not available for windows)
print_commands: boolSets -x flag for printing each script command before invocation (not available for windows)
Methods
impl ScriptOptions[src]
pub fn new() -> ScriptOptions[src]
Returns new instance
Trait Implementations
impl PartialEq<ScriptOptions> for ScriptOptions[src]
fn eq(&self, other: &ScriptOptions) -> bool[src]
fn ne(&self, other: &ScriptOptions) -> bool[src]
impl Clone for ScriptOptions[src]
fn clone(&self) -> ScriptOptions[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ScriptOptions[src]
Auto Trait Implementations
impl Send for ScriptOptions
impl Sync for ScriptOptions
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,