MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / deserialize_tuple_struct

Method deserialize_tuple_struct

src/serde/de.rs:217–224  ·  view source on GitHub ↗
(
        self,
        _name: &'static str,
        _len: usize,
        v: V,
    )

Source from the content-addressed store, hash-verified

215 }
216
217 fn deserialize_tuple_struct<V: Visitor<'de>>(
218 self,
219 _name: &'static str,
220 _len: usize,
221 v: V,
222 ) -> Result<V::Value> {
223 self.deserialize_seq(v)
224 }
225
226 fn deserialize_map<V: Visitor<'de>>(self, v: V) -> Result<V::Value> {
227 v.visit_map(self)

Callers

nothing calls this directly

Calls 1

deserialize_seqMethod · 0.80

Tested by

no test coverage detected