pub enum ReportDestination {
Stderr,
File(String),
}Expand description
Output destination
Variants§
Trait Implementations§
Source§impl Clone for ReportDestination
impl Clone for ReportDestination
Source§fn clone(&self) -> ReportDestination
fn clone(&self) -> ReportDestination
Returns a duplicate 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 ReportDestination
impl Debug for ReportDestination
Source§impl PartialEq for ReportDestination
impl PartialEq for ReportDestination
impl Eq for ReportDestination
impl StructuralPartialEq for ReportDestination
Auto Trait Implementations§
impl Freeze for ReportDestination
impl RefUnwindSafe for ReportDestination
impl Send for ReportDestination
impl Sync for ReportDestination
impl Unpin for ReportDestination
impl UnwindSafe for ReportDestination
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