pub struct StderrLogSink;Expand description
Default HostLogSink writing to stderr via eprintln!.
Trait Implementations§
Source§impl Clone for StderrLogSink
impl Clone for StderrLogSink
Source§fn clone(&self) -> StderrLogSink
fn clone(&self) -> StderrLogSink
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 StderrLogSink
impl Debug for StderrLogSink
Source§impl Default for StderrLogSink
impl Default for StderrLogSink
Source§fn default() -> StderrLogSink
fn default() -> StderrLogSink
Returns the “default value” for a type. Read more
Source§impl HostLogSink for StderrLogSink
impl HostLogSink for StderrLogSink
Auto Trait Implementations§
impl Freeze for StderrLogSink
impl RefUnwindSafe for StderrLogSink
impl Send for StderrLogSink
impl Sync for StderrLogSink
impl Unpin for StderrLogSink
impl UnsafeUnpin for StderrLogSink
impl UnwindSafe for StderrLogSink
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more