pub enum DiagSink {
Stdout,
File(PathBuf),
RingBuffer(usize),
Disabled,
}Expand description
Output destination for diagnostic events.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiagSink
impl RefUnwindSafe for DiagSink
impl Send for DiagSink
impl Sync for DiagSink
impl Unpin for DiagSink
impl UnsafeUnpin for DiagSink
impl UnwindSafe for DiagSink
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