MCPcopy Create free account
hub / github.com/SoftbearStudios/bitcode / deserialize_struct

Method deserialize_struct

src/serde/de.rs:468–478  ·  view source on GitHub ↗
(
        self,
        _: &'static str,
        fields: &'static [&'static str],
        v: V,
    )

Source from the content-addressed store, hash-verified

466
467 #[inline(always)]
468 fn deserialize_struct<V>(
469 self,
470 _: &'static str,
471 fields: &'static [&'static str],
472 v: V,
473 ) -> Result<V::Value>
474 where
475 V: Visitor<'de>,
476 {
477 self.deserialize_tuple(fields.len(), v)
478 }
479
480 #[inline(always)]
481 fn deserialize_enum<V>(

Callers

nothing calls this directly

Calls 2

deserialize_tupleMethod · 0.80
lenMethod · 0.45

Tested by

no test coverage detected