pub struct ReturnStdoutAndErrStrings;
Expand description
Returns the captured stdout and stderr as strings, if the process succeeds.
Trait Implementations§
Source§impl Debug for ReturnStdoutAndErrStrings
impl Debug for ReturnStdoutAndErrStrings
Source§impl OutputMapping for ReturnStdoutAndErrStrings
impl OutputMapping for ReturnStdoutAndErrStrings
Source§type Output = CapturedStdoutAndErrStrings
type Output = CapturedStdoutAndErrStrings
The output produced by this command, if it is run and doesn’t fail.
Source§type Error = CommandExecutionWithStringOutputError
type Error = CommandExecutionWithStringOutputError
The error produced by this command, if it is run and does fail.
Source§fn capture_stdout(&self) -> bool
fn capture_stdout(&self) -> bool
Return if stdout needs to be captured for this output mapping
map_output
function. Read moreSource§fn capture_stderr(&self) -> bool
fn capture_stderr(&self) -> bool
Return if stderr needs to be captured for this output mapping
map_output
function. Read moreAuto Trait Implementations§
impl Freeze for ReturnStdoutAndErrStrings
impl RefUnwindSafe for ReturnStdoutAndErrStrings
impl Send for ReturnStdoutAndErrStrings
impl Sync for ReturnStdoutAndErrStrings
impl Unpin for ReturnStdoutAndErrStrings
impl UnwindSafe for ReturnStdoutAndErrStrings
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