pub enum Ostream {
StdOut,
StdErr,
}
Expand description
Defines the kind of standard process output stream.
Variants§
StdOut
stdout
is the default output where process outputs its payload
StdErr
stderr
is the stream for human-readable messages not inteded for automation
Trait Implementations§
impl Copy for Ostream
impl Eq for Ostream
impl StructuralPartialEq for Ostream
Auto Trait Implementations§
impl Freeze for Ostream
impl RefUnwindSafe for Ostream
impl Send for Ostream
impl Sync for Ostream
impl Unpin for Ostream
impl UnwindSafe for Ostream
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