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

Method deserialize_bytes

src/de.rs:224–230  ·  view source on GitHub ↗
(self, visitor: V)

Source from the content-addressed store, hash-verified

222 }
223
224 fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value>
225 where
226 V: de::Visitor<'de>,
227 {
228 let b = self.input.cast::<PyBytes>()?;
229 visitor.visit_bytes(b.as_bytes())
230 }
231
232 fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value>
233 where

Callers 2

deserialize_anyMethod · 0.80
deserialize_byte_bufMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected