Enum nih_plug::debug::nih_log::OutputTarget
pub enum OutputTarget {
Stderr,
File(PathBuf),
}
Expand description
Determines where the logger should write its output. If no explicit target is chosen, then a default dynamic target is used instead. Check the readme for more information.
Variants§
Trait Implementations§
§impl Clone for OutputTarget
impl Clone for OutputTarget
§fn clone(&self) -> OutputTarget
fn clone(&self) -> OutputTarget
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 more§impl Debug for OutputTarget
impl Debug for OutputTarget
§impl PartialEq<OutputTarget> for OutputTarget
impl PartialEq<OutputTarget> for OutputTarget
§fn eq(&self, other: &OutputTarget) -> bool
fn eq(&self, other: &OutputTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OutputTarget
impl StructuralEq for OutputTarget
impl StructuralPartialEq for OutputTarget
Auto Trait Implementations§
impl RefUnwindSafe for OutputTarget
impl Send for OutputTarget
impl Sync for OutputTarget
impl Unpin for OutputTarget
impl UnwindSafe for OutputTarget
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