pub struct SeqEncoder<'a, W> { /* private fields */ }Expand description
An encoder used to encode the values in a sequence.
Note that this type cannot be constructed from outside this crate, and is only public because of the way the library’s serialization is implemented.
Trait Implementations§
Source§impl<'a, W: Debug> Debug for SeqEncoder<'a, W>
impl<'a, W: Debug> Debug for SeqEncoder<'a, W>
Source§impl<'a, W: Write> SerializeSeq for SeqEncoder<'a, W>
impl<'a, W: Write> SerializeSeq for SeqEncoder<'a, W>
Source§impl<'a, W: Write> SerializeTuple for SeqEncoder<'a, W>
impl<'a, W: Write> SerializeTuple for SeqEncoder<'a, W>
Source§impl<'a, W: Write> SerializeTupleStruct for SeqEncoder<'a, W>
impl<'a, W: Write> SerializeTupleStruct for SeqEncoder<'a, W>
Source§impl<'a, W: Write> SerializeTupleVariant for SeqEncoder<'a, W>
impl<'a, W: Write> SerializeTupleVariant for SeqEncoder<'a, W>
Auto Trait Implementations§
impl<'a, W> Freeze for SeqEncoder<'a, W>
impl<'a, W> RefUnwindSafe for SeqEncoder<'a, W>where
W: RefUnwindSafe,
impl<'a, W> Send for SeqEncoder<'a, W>where
W: Send,
impl<'a, W> Sync for SeqEncoder<'a, W>where
W: Sync,
impl<'a, W> Unpin for SeqEncoder<'a, W>
impl<'a, W> !UnwindSafe for SeqEncoder<'a, W>
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