1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
use std::{error, fmt};
use super::{tag, Map, OtherFields};
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum BuildError {
MissingField(&'static str),
InvalidValue(&'static str),
}
impl error::Error for BuildError {}
impl fmt::Display for BuildError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::MissingField(tag) => write!(f, "missing field: {}", tag),
Self::InvalidValue(tag) => write!(f, "invalid value: {}", tag),
}
}
}
pub trait Inner<I>: Default
where
I: super::Inner,
{
fn build(self) -> Result<I, BuildError>;
}
pub struct Builder<I>
where
I: super::Inner,
{
pub(crate) inner: I::Builder,
other_fields: OtherFields<I::StandardTag>,
}
impl<I> Builder<I>
where
I: super::Inner,
{
pub fn insert(mut self, key: tag::Other<I::StandardTag>, value: String) -> Self {
self.other_fields.insert(key, value);
self
}
pub fn build(self) -> Result<Map<I>, BuildError> {
let inner = self.inner.build()?;
Ok(Map {
inner,
other_fields: self.other_fields,
})
}
}
impl<I> Default for Builder<I>
where
I: super::Inner,
{
fn default() -> Self {
Self {
inner: I::Builder::default(),
other_fields: OtherFields::new(),
}
}
}