pub enum OutputDestination {
Stdout,
Path(PathBuf),
}
Expand description
Where to output results.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OutputDestination
impl Clone for OutputDestination
Source§fn clone(&self) -> OutputDestination
fn clone(&self) -> OutputDestination
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 Debug for OutputDestination
impl Debug for OutputDestination
Source§impl Default for OutputDestination
impl Default for OutputDestination
Source§fn default() -> OutputDestination
fn default() -> OutputDestination
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutputDestination
impl RefUnwindSafe for OutputDestination
impl Send for OutputDestination
impl Sync for OutputDestination
impl Unpin for OutputDestination
impl UnwindSafe for OutputDestination
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