pub enum Quiet {
Never,
Always,
OnSuccess,
}Expand description
Controls forwarding of child stdout/stderr.
Variants§
Never
Never be quiet: always forward child stdout/stderr to the parent process.
Always
Always be quiet: never forward child stdout/stderr.
OnSuccess
Only be quiet on success: forward output if the command fails.
Trait Implementations§
impl Copy for Quiet
impl Eq for Quiet
impl StructuralPartialEq for Quiet
Auto Trait Implementations§
impl Freeze for Quiet
impl RefUnwindSafe for Quiet
impl Send for Quiet
impl Sync for Quiet
impl Unpin for Quiet
impl UnsafeUnpin for Quiet
impl UnwindSafe for Quiet
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