pub struct JsonSeqWriter<W: Write> { /* private fields */ }
Implementations§
Source§impl<W: Write> JsonSeqWriter<W>
impl<W: Write> JsonSeqWriter<W>
Sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Consume this and return the inner Write
Sourcepub fn write_item(&mut self, value: &Value) -> Result<()>
pub fn write_item(&mut self, value: &Value) -> Result<()>
Write a single serde_json object to this
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for JsonSeqWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for JsonSeqWriter<W>where
W: RefUnwindSafe,
impl<W> Send for JsonSeqWriter<W>where
W: Send,
impl<W> Sync for JsonSeqWriter<W>where
W: Sync,
impl<W> Unpin for JsonSeqWriter<W>where
W: Unpin,
impl<W> UnwindSafe for JsonSeqWriter<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