(
&self, formatter: &mut core::fmt::Formatter,
)
| 1875 | type Value = TinyVec<A>; |
| 1876 | |
| 1877 | fn expecting( |
| 1878 | &self, formatter: &mut core::fmt::Formatter, |
| 1879 | ) -> core::fmt::Result { |
| 1880 | formatter.write_str("a sequence") |
| 1881 | } |
| 1882 | |
| 1883 | fn visit_seq<S>(self, mut seq: S) -> Result<Self::Value, S::Error> |
| 1884 | where |