pub enum OutputStream {
StdOut,
StdErr,
File,
}Expand description
An enumeration of the different writer output formats. Currently stdout and files are supported.
Variants§
StdOut
Directs the output to the stdout stream.
StdErr
Directs the output to the stderr stream.
File
Directs to output to a file.
Auto Trait Implementations§
impl Freeze for OutputStream
impl RefUnwindSafe for OutputStream
impl Send for OutputStream
impl Sync for OutputStream
impl Unpin for OutputStream
impl UnwindSafe for OutputStream
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