(
&self, formatter: &mut core::fmt::Formatter,
)
| 2020 | type Value = ArrayVec<A>; |
| 2021 | |
| 2022 | fn expecting( |
| 2023 | &self, formatter: &mut core::fmt::Formatter, |
| 2024 | ) -> core::fmt::Result { |
| 2025 | formatter.write_str("a sequence") |
| 2026 | } |
| 2027 | |
| 2028 | fn visit_seq<S>(self, mut seq: S) -> Result<Self::Value, S::Error> |
| 2029 | where |