MCPcopy Index your code
hub / github.com/davidhewitt/pythonize / deserialize_tuple_struct

Method deserialize_tuple_struct

src/de.rs:300–310  ·  view source on GitHub ↗
(
        self,
        _name: &'static str,
        len: usize,
        visitor: V,
    )

Source from the content-addressed store, hash-verified

298 }
299
300 fn deserialize_tuple_struct<V>(
301 self,
302 _name: &'static str,
303 len: usize,
304 visitor: V,
305 ) -> Result<V::Value>
306 where
307 V: de::Visitor<'de>,
308 {
309 visitor.visit_seq(self.sequence_access(Some(len))?)
310 }
311
312 fn deserialize_map<V>(self, visitor: V) -> Result<V::Value>
313 where

Callers

nothing calls this directly

Calls 1

sequence_accessMethod · 0.80

Tested by

no test coverage detected