pub struct LiveDataWriter<W>where
W: Write,{ /* private fields */ }
Expand description
Allows writing the live represenation of Data
variants to a Write
trait object.
Implementations§
Source§impl<W> LiveDataWriter<W>where
W: Write,
impl<W> LiveDataWriter<W>where
W: Write,
Sourcepub fn new(writer: W) -> LiveDataWriter<W>
pub fn new(writer: W) -> LiveDataWriter<W>
Construct a new LiveDataWriter
.
Trait Implementations§
Source§impl<W> AsMut<W> for LiveDataWriter<W>where
W: Write,
impl<W> AsMut<W> for LiveDataWriter<W>where
W: Write,
Source§impl<W> AsRef<W> for LiveDataWriter<W>where
W: Write,
impl<W> AsRef<W> for LiveDataWriter<W>where
W: Write,
Auto Trait Implementations§
impl<W> Freeze for LiveDataWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for LiveDataWriter<W>where
W: RefUnwindSafe,
impl<W> Send for LiveDataWriter<W>where
W: Send,
impl<W> Sync for LiveDataWriter<W>where
W: Sync,
impl<W> Unpin for LiveDataWriter<W>where
W: Unpin,
impl<W> UnwindSafe for LiveDataWriter<W>where
W: 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