pub enum OutputKind<'f> {
STDOUT,
STDERR,
FILE(&'f str),
}
Expand description
Identify the three kinds of output supported.
Variants§
Trait Implementations§
Source§impl<'f> Clone for OutputKind<'f>
impl<'f> Clone for OutputKind<'f>
Source§fn clone(&self) -> OutputKind<'f>
fn clone(&self) -> OutputKind<'f>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'f> Hash for OutputKind<'f>
impl<'f> Hash for OutputKind<'f>
Source§impl<'f> PartialEq for OutputKind<'f>
impl<'f> PartialEq for OutputKind<'f>
impl<'f> Eq for OutputKind<'f>
impl<'f> StructuralPartialEq for OutputKind<'f>
Auto Trait Implementations§
impl<'f> Freeze for OutputKind<'f>
impl<'f> RefUnwindSafe for OutputKind<'f>
impl<'f> Send for OutputKind<'f>
impl<'f> Sync for OutputKind<'f>
impl<'f> Unpin for OutputKind<'f>
impl<'f> UnwindSafe for OutputKind<'f>
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