Enum lambda_extension::tracing::subscriber::fmt::writer::EitherWriter
pub enum EitherWriter<A, B> {
A(A),
B(B),
}
Expand description
A writer that is one of two types implementing io::Write
.
This may be used by MakeWriter
implementations that may conditionally
return one of two writers.
Variants§
Implementations§
§impl<T> EitherWriter<T, Sink>
impl<T> EitherWriter<T, Sink>
pub fn none() -> EitherWriter<T, Sink> ⓘ
pub fn none() -> EitherWriter<T, Sink> ⓘ
Returns a disabled writer.
Any bytes written to the returned writer are discarded.
This is equivalent to returning Option::None
.
pub fn some(t: T) -> EitherWriter<T, Sink> ⓘ
pub fn some(t: T) -> EitherWriter<T, Sink> ⓘ
Returns an enabled writer of type T
.
This is equivalent to returning Option::Some
.
Trait Implementations§
§impl<A, B> Clone for EitherWriter<A, B>
impl<A, B> Clone for EitherWriter<A, B>
§fn clone(&self) -> EitherWriter<A, B> ⓘ
fn clone(&self) -> EitherWriter<A, B> ⓘ
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<A, B> Debug for EitherWriter<A, B>
impl<A, B> Debug for EitherWriter<A, B>
§impl<T> From<Option<T>> for EitherWriter<T, Sink>
impl<T> From<Option<T>> for EitherWriter<T, Sink>
§impl<A, B> PartialEq for EitherWriter<A, B>
impl<A, B> PartialEq for EitherWriter<A, B>
§fn eq(&self, other: &EitherWriter<A, B>) -> bool
fn eq(&self, other: &EitherWriter<A, B>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl<A, B> Write for EitherWriter<A, B>
impl<A, B> Write for EitherWriter<A, B>
§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Write a buffer into this writer, returning how many bytes were written. Read more
§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
§fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
Writes a formatted string into this writer, returning any error
encountered. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)impl<A, B> Copy for EitherWriter<A, B>
impl<A, B> Eq for EitherWriter<A, B>
impl<A, B> StructuralPartialEq for EitherWriter<A, B>
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for EitherWriter<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for EitherWriter<A, B>
impl<A, B> Sync for EitherWriter<A, B>
impl<A, B> Unpin for EitherWriter<A, B>
impl<A, B> UnwindSafe for EitherWriter<A, B>where
A: UnwindSafe,
B: UnwindSafe,
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