pub enum DebugOutput {
StdOut,
StdErr,
File(PathBuf),
}
Variants§
Trait Implementations§
Source§impl Clone for DebugOutput
impl Clone for DebugOutput
Source§fn clone(&self) -> DebugOutput
fn clone(&self) -> DebugOutput
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 Default for DebugOutput
impl Default for DebugOutput
Source§fn default() -> DebugOutput
fn default() -> DebugOutput
Returns the “default value” for a type. Read more
Source§impl From<DebugOutput> for Debug
impl From<DebugOutput> for Debug
Source§fn from(debug: DebugOutput) -> Self
fn from(debug: DebugOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DebugOutput
impl RefUnwindSafe for DebugOutput
impl Send for DebugOutput
impl Sync for DebugOutput
impl Unpin for DebugOutput
impl UnwindSafe for DebugOutput
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