[][src]Struct serde_wasm_bindgen::Deserializer

pub struct Deserializer { /* fields omitted */ }

A newtype that allows using any JsValue as a serde::Deserializer.

Trait Implementations

impl From<JsValue> for Deserializer[src]

impl<'de> Deserializer<'de> for Deserializer[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Read more

fn deserialize_char<V: Visitor<'de>>(
    self,
    visitor: V
) -> Result<V::Value, Error>
[src]

Converts a JavaScript string to a Rust char.

By default we don't perform detection of single chars because it's pretty complicated, but if we get a hint that they're expected, this methods allows to avoid heap allocations of an intermediate String by directly converting numeric codepoints instead.

fn deserialize_newtype_struct<V: Visitor<'de>>(
    self,
    _name: &'static str,
    visitor: V
) -> Result<V::Value, Error>
[src]

Simply calls visit_newtype_struct.

fn deserialize_seq<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value, Error>[src]

Supported inputs:

fn deserialize_tuple<V: Visitor<'de>>(
    self,
    _len: usize,
    visitor: V
) -> Result<V::Value, Error>
[src]

Forwards to Self::deserialize_seq.

fn deserialize_tuple_struct<V: Visitor<'de>>(
    self,
    _name: &'static str,
    len: usize,
    visitor: V
) -> Result<V::Value, Error>
[src]

fn deserialize_map<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value, Error>[src]

Supported inputs:

  • A JS iterable that is expected to return [key, value] pairs.
  • A JS object, which will be iterated using Object.entries. Supported outputs:
  • A Rust key-value map (HashMap, BTreeMap, etc.).
  • A typed Rust structure with #[derive(Deserialize)].

fn deserialize_struct<V: Visitor<'de>>(
    self,
    _name: &'static str,
    fields: &'static [&'static str],
    visitor: V
) -> Result<V::Value, Error>
[src]

Supports same input/output types as Self::deserialize_map.

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

Here we try to be compatible with serde-json, which means supporting:

  • "Variant" - gets converted to a unit variant MyEnum::Variant
  • { Variant: ...payload... } - gets converted to a MyEnum::Variant { ...payload... }.

fn deserialize_ignored_any<V: Visitor<'de>>(
    self,
    visitor: V
) -> Result<V::Value, Error>
[src]

Ignores any value without calling to the JS side even to check its type.

fn deserialize_bytes<V: Visitor<'de>>(
    self,
    visitor: V
) -> Result<V::Value, Error>
[src]

We can't take references to JS memory, so forwards to an owned Self::deserialize_byte_buf.

fn deserialize_byte_buf<V: Visitor<'de>>(
    self,
    visitor: V
) -> Result<V::Value, Error>
[src]

Serde expects visit_byte_buf to be called only in response to an explicit deserialize_bytes, so we provide conversions here.

Supported inputs:

  • ArrayBuffer - converted to an Uint8Array view first.
  • Uint8Array - copied to a newly created Vec<u8> on the Rust side.

impl<'de> VariantAccess<'de> for Deserializer[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Must match the error type of our EnumAccess. Read more

fn newtype_variant<T>(self) -> Result<T, Self::Error> where
    T: Deserialize<'de>, 
[src]

Called when deserializing a variant with a single value. Read more

Auto Trait Implementations

impl !Send for Deserializer

impl !Sync for Deserializer

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]