(&mut self, len: u32, mut visitor: V)
| 2248 | } |
| 2249 | |
| 2250 | fn read_array<V>(&mut self, len: u32, mut visitor: V) -> Result<V::Value> |
| 2251 | where V: serde::de::Visitor |
| 2252 | { |
| 2253 | visitor.visit_seq(SeqVisitor { |
| 2254 | deserializer: self, |
| 2255 | len: len, |
| 2256 | actual: len, |
| 2257 | }) |
| 2258 | } |
| 2259 | |
| 2260 | fn read_map<V>(&mut self, len: u32, mut visitor: V) -> Result<V::Value> |
| 2261 | where V: serde::de::Visitor |