From c6da7ef9076e0670b3488f1229cf971d447df87d Mon Sep 17 00:00:00 2001 From: robin-nitrokey Date: Mon, 7 Oct 2024 11:47:50 +0000 Subject: [PATCH] deploy: 6b3ce6928edd98e9a23044d54c75eaaf1f6d1e9a --- cbor_smol/de/index.html | 2 +- cbor_smol/de/struct.Deserializer.html | 60 +++++++++++++-------------- src/cbor_smol/de.rs.html | 4 +- 3 files changed, 34 insertions(+), 32 deletions(-) diff --git a/cbor_smol/de/index.html b/cbor_smol/de/index.html index 40ace46..e950699 100644 --- a/cbor_smol/de/index.html +++ b/cbor_smol/de/index.html @@ -1,3 +1,3 @@ -cbor_smol::de - Rust

Module cbor_smol::de

source ·

Structs§

  • A structure for deserializing a cbor-smol message.

Functions§

source§

fn deserialize_enum<V>( self, _name: &'static str, _variants: &'static [&'static str], visitor: V, ) -> Result<V::Value>
where V: Visitor<'de>,

Hint that the Deserialize type is expecting an enum value with a -particular name and possible variants.
source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value>
where +particular name and possible variants.

source§

fn deserialize_identifier<V>(self, visitor: V) -> Result<V::Value>
where V: Visitor<'de>,

Hint that the Deserialize type is expecting the name of a struct -field or the discriminant of an enum variant.
source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value>
where +field or the discriminant of an enum variant.

source§

fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value>
where V: Visitor<'de>,

Hint that the Deserialize type needs to deserialize a value whose type doesn’t matter because it is ignored. Read more
source§

fn deserialize_i128<V>( self, diff --git a/src/cbor_smol/de.rs.html b/src/cbor_smol/de.rs.html index ee0d33a..a57a948 100644 --- a/src/cbor_smol/de.rs.html +++ b/src/cbor_smol/de.rs.html @@ -1280,6 +1280,7 @@ 1280 1281 1282 +1283
use serde::Deserialize;
 
 use serde::de::IntoDeserializer;
@@ -1624,7 +1625,8 @@
         }
     }
 
-    fn next_value_seed<V>(&mut self, seed: V) -> Result<V::Value>
+    #[inline(never)]
+    fn next_value_seed<V>(&mut self, seed: V) -> Result<V::Value>
     where
         V: de::DeserializeSeed<'b>,
     {