pub type OptionalWriter<T> = EitherWriter<T, Sink>;
Available on crate features
fmt
and std
only.Expand description
A writer which may or may not be enabled.
This may be used by MakeWriter
implementations that wish to
conditionally enable or disable the returned writer based on a span or
eventโs Metadata
.
Aliased Typeยง
enum OptionalWriter<T> {
A(T),
B(Sink),
}
Variantsยง
Implementationsยง
Sourceยงimpl<T> OptionalWriter<T>
impl<T> OptionalWriter<T>
Sourcepub fn none() -> Self
pub fn none() -> Self
Returns a disabled writer.
Any bytes written to the returned writer are discarded.
This is equivalent to returning Option::None
.
Sourcepub fn some(t: T) -> Self
pub fn some(t: T) -> Self
Returns an enabled writer of type T
.
This is equivalent to returning Option::Some
.
Trait Implementationsยง
Sourceยงimpl<T> From<Option<T>> for OptionalWriter<T>
impl<T> From<Option<T>> for OptionalWriter<T>
Sourceยงimpl<A: Clone, B: Clone> Clone for EitherWriter<A, B>
impl<A: Clone, B: Clone> Clone for EitherWriter<A, B>
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSourceยงimpl<A, B> Write for EitherWriter<A, B>
impl<A, B> Write for EitherWriter<A, B>
Sourceยงfn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Writes a buffer into this writer, returning how many bytes were written. Read more
Sourceยงfn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
Sourceยงfn write_all(&mut self, buf: &[u8]) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<()>
Attempts to write an entire buffer into this writer. Read more
Sourceยงfn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()>
fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()>
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
#69941)