1use crate::Context;
23use super::{Encode, Encoder};
45/// Trait governing how to encode a sequence.
6pub trait SequenceEncoder {
7/// Context associated with the encoder.
8type Cx: ?Sized + Context;
9/// Result type of the encoder.
10type Ok;
11/// The encoder returned when advancing the sequence encoder.
12type EncodeNext<'this>: Encoder<
13 Cx = Self::Cx,
14Ok = Self::Ok,
15 Error = <Self::Cx as Context>::Error,
16 Mode = <Self::Cx as Context>::Mode,
17 >
18where
19Self: 'this;
2021/// Return encoder for the next element.
22#[must_use = "Encoders must be consumed"]
23fn encode_next(&mut self) -> Result<Self::EncodeNext<'_>, <Self::Cx as Context>::Error>;
2425/// Finish encoding the sequence.
26fn finish_sequence(self) -> Result<Self::Ok, <Self::Cx as Context>::Error>;
2728/// Push an element into the sequence.
29#[inline]
30fn push<T>(&mut self, value: T) -> Result<(), <Self::Cx as Context>::Error>
31where
32T: Encode<<Self::Cx as Context>::Mode>,
33 {
34self.encode_next()?.encode(value)?;
35Ok(())
36 }
37}