1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
//! Helpers for integrating musli with I/O types like [std::io] and
//! [std::io::Write].
//!
//! The central function in this module is the [wrap] function which constructs
//! an adapter around an I/O type to work with musli.
/// Wrapper constructed with [wrap].
pub struct Wrap<T> {
inner: T,
}
/// Wrap a type so that it implements [Reader] or [Writer] as appropriate.
///
/// [Reader]: crate::Reader
/// [Writer]: crate::Writer
pub fn wrap<T>(inner: T) -> Wrap<T> {
Wrap { inner }
}
#[cfg(feature = "std")]
impl<W> crate::writer::Writer for Wrap<W>
where
W: std::io::Write,
{
type Error = std::io::Error;
fn write_bytes(&mut self, bytes: &[u8]) -> Result<(), Self::Error> {
self.inner.write_all(bytes)
}
}