MCPcopy Create free account
hub / github.com/3Hren/msgpack-rust / read_array

Method read_array

src/decode.rs:2250–2258  ·  view source on GitHub ↗
(&mut self, len: u32, mut visitor: V)

Source from the content-addressed store, hash-verified

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

Callers 1

visitMethod · 0.80

Calls 1

visit_seqMethod · 0.80

Tested by

no test coverage detected