1use crate::Context;
23use super::{Encode, Encoder};
45/// Trait governing how to encode a variant.
6#[must_use = "Must call end_variant to finish encoding"]
7pub trait VariantEncoder {
8/// Context associated with the encoder.
9type Cx: ?Sized + Context;
10/// Result type of the encoder.
11type Ok;
12/// The encoder returned when advancing the map encoder to encode the key.
13type EncodeTag<'this>: Encoder<
14 Cx = Self::Cx,
15Ok = Self::Ok,
16 Error = <Self::Cx as Context>::Error,
17 Mode = <Self::Cx as Context>::Mode,
18 >
19where
20Self: 'this;
21/// The encoder returned when advancing the map encoder to encode the value.
22type EncodeData<'this>: Encoder<
23 Cx = Self::Cx,
24Ok = Self::Ok,
25 Error = <Self::Cx as Context>::Error,
26 Mode = <Self::Cx as Context>::Mode,
27 >
28where
29Self: 'this;
3031/// Return the encoder for the first element in the variant.
32#[must_use = "Encoders must be consumed"]
33fn encode_tag(&mut self) -> Result<Self::EncodeTag<'_>, <Self::Cx as Context>::Error>;
3435/// Return encoder for the second element in the variant.
36#[must_use = "Encoders must be consumed"]
37fn encode_data(&mut self) -> Result<Self::EncodeData<'_>, <Self::Cx as Context>::Error>;
3839/// End the variant encoder.
40fn finish_variant(self) -> Result<Self::Ok, <Self::Cx as Context>::Error>;
4142/// Insert the variant immediately.
43#[inline]
44fn insert_variant<T, V>(
45mut self,
46 tag: T,
47 value: V,
48 ) -> Result<Self::Ok, <Self::Cx as Context>::Error>
49where
50Self: Sized,
51 T: Encode<<Self::Cx as Context>::Mode>,
52 V: Encode<<Self::Cx as Context>::Mode>,
53 {
54self.encode_tag()?.encode(tag)?;
55self.encode_data()?.encode(value)?;
56self.finish_variant()
57 }
58}