Trait print_bytes::WriteLossy
source · pub trait WriteLossy { }Expand description
A bound for write_lossy that allows it to be used for some types
without specialization.
When the “specialization” feature is enabled, this trait is implemented for all types.
Implementations on Foreign Types§
impl<T> WriteLossy for &mut Twhere
T: ?Sized + WriteLossy,
impl<T> WriteLossy for Box<T>where
T: ?Sized + WriteLossy,
impl<T> WriteLossy for BufWriter<T>where
T: Write + WriteLossy,
impl<T> WriteLossy for LineWriter<T>where
T: Write + WriteLossy,
impl WriteLossy for Stderr
impl WriteLossy for StderrLock<'_>
impl WriteLossy for Stdout
impl WriteLossy for StdoutLock<'_>
impl WriteLossy for Vec<u8>
Implementors§
impl<T> WriteLossy for Twhere
T: ?Sized,
Available on crate feature
specialization only.