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

Method deserialize_struct

src/de.rs:323–333  ·  view source on GitHub ↗
(
        self,
        _name: &'static str,
        _fields: &'static [&'static str],
        visitor: V,
    )

Source from the content-addressed store, hash-verified

321 }
322
323 fn deserialize_struct<V>(
324 self,
325 _name: &'static str,
326 _fields: &'static [&'static str],
327 visitor: V,
328 ) -> Result<V::Value>
329 where
330 V: de::Visitor<'de>,
331 {
332 self.deserialize_map(visitor)
333 }
334
335 fn deserialize_enum<V>(
336 self,

Callers

nothing calls this directly

Calls 1

deserialize_mapMethod · 0.80

Tested by

no test coverage detected