pub struct StderrWriter;Expand description
Writes to stderr.
Trait Implementations§
Source§impl Clone for StderrWriter
impl Clone for StderrWriter
Source§fn clone(&self) -> StderrWriter
fn clone(&self) -> StderrWriter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StderrWriter
impl Debug for StderrWriter
Source§impl Default for StderrWriter
impl Default for StderrWriter
Source§fn default() -> StderrWriter
fn default() -> StderrWriter
Returns the “default value” for a type. Read more
Source§impl MakeWriter for StderrWriter
impl MakeWriter for StderrWriter
Source§type Writer = Stderr
type Writer = Stderr
The writer type produced by
Self::make_writer; usually
Stdout, Stderr, or a guard around a file handle.Source§fn make_writer(&self) -> Stderr
fn make_writer(&self) -> Stderr
Yield a writer for this batch.
Source§fn make_writer_for(&self, _sev: Severity) -> Self::Writer
fn make_writer_for(&self, _sev: Severity) -> Self::Writer
Yield a severity-specific writer; defaults to
Self::make_writer.impl Copy for StderrWriter
Auto Trait Implementations§
impl Freeze for StderrWriter
impl RefUnwindSafe for StderrWriter
impl Send for StderrWriter
impl Sync for StderrWriter
impl Unpin for StderrWriter
impl UnsafeUnpin for StderrWriter
impl UnwindSafe for StderrWriter
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