Struct serde_hjson::value::Deserializer
source · [−]pub struct Deserializer { /* private fields */ }
Expand description
Creates a serde::Deserializer
from a Value
object.
Implementations
sourceimpl Deserializer
impl Deserializer
sourcepub fn new(value: Value) -> Deserializer
pub fn new(value: Value) -> Deserializer
Creates a new deserializer instance for deserializing the specified Hjson value.
Trait Implementations
sourceimpl Deserializer for Deserializer
impl Deserializer for Deserializer
sourcefn deserialize<V>(&mut self, visitor: V) -> Result<V::Value, Error> where
V: Visitor,
fn deserialize<V>(&mut self, visitor: V) -> Result<V::Value, Error> where
V: Visitor,
This method walks a visitor through a value as it is being deserialized.
sourcefn deserialize_option<V>(&mut self, visitor: V) -> Result<V::Value, Error> where
V: Visitor,
fn deserialize_option<V>(&mut self, visitor: V) -> Result<V::Value, Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an Option
value. This allows
deserializers that encode an optional value as a nullable value to convert the null value
into a None
, and a regular value as Some(value)
. Read more
sourcefn deserialize_enum<V>(
&mut self,
_name: &str,
_variants: &'static [&'static str],
visitor: V
) -> Result<V::Value, Error> where
V: EnumVisitor,
fn deserialize_enum<V>(
&mut self,
_name: &str,
_variants: &'static [&'static str],
visitor: V
) -> Result<V::Value, Error> where
V: EnumVisitor,
This method hints that the Deserialize
type is expecting an enum value. This allows
deserializers that provide a custom enumeration serialization to properly deserialize the
type. Read more
sourcefn deserialize_newtype_struct<V>(
&mut self,
_name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_newtype_struct<V>(
&mut self,
_name: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a newtype struct. This allows
deserializers to a newtype struct that aren’t tagged as a newtype struct.
A reasonable default is to simply deserialize the expected value directly. Read more
sourcefn deserialize_bool<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_bool<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a bool
value.
sourcefn deserialize_usize<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_usize<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an usize
value.
A reasonable default is to forward to deserialize_u64
. Read more
sourcefn deserialize_u8<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_u8<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an u8
value.
A reasonable default is to forward to deserialize_u64
. Read more
sourcefn deserialize_u16<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_u16<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an u16
value.
A reasonable default is to forward to deserialize_u64
. Read more
sourcefn deserialize_u32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_u32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an u32
value.
A reasonable default is to forward to deserialize_u64
. Read more
sourcefn deserialize_u64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_u64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an u64
value.
sourcefn deserialize_isize<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_isize<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an isize
value.
A reasonable default is to forward to deserialize_i64
. Read more
sourcefn deserialize_i8<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_i8<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an i8
value.
A reasonable default is to forward to deserialize_i64
. Read more
sourcefn deserialize_i16<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_i16<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an i16
value.
A reasonable default is to forward to deserialize_i64
. Read more
sourcefn deserialize_i32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_i32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an i32
value.
A reasonable default is to forward to deserialize_i64
. Read more
sourcefn deserialize_i64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_i64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an i64
value.
sourcefn deserialize_f32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_f32<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a f32
value.
A reasonable default is to forward to deserialize_f64
. Read more
sourcefn deserialize_f64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_f64<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a f64
value.
sourcefn deserialize_char<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_char<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a char
value.
sourcefn deserialize_str<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_str<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a &str
value.
sourcefn deserialize_string<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_string<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a String
value.
sourcefn deserialize_unit<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_unit<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting an unit
value.
sourcefn deserialize_seq<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_seq<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a sequence value. This allows
deserializers to parse sequences that aren’t tagged as sequences. Read more
sourcefn deserialize_seq_fixed_size<V>(
&mut self,
_: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_seq_fixed_size<V>(
&mut self,
_: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a fixed size array. This allows
deserializers to parse arrays that aren’t tagged as arrays. Read more
sourcefn deserialize_bytes<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_bytes<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a Vec<u8>
. This allows
deserializers that provide a custom byte vector serialization to properly deserialize the
type. Read more
sourcefn deserialize_map<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_map<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a map of values. This allows
deserializers to parse sequences that aren’t tagged as maps. Read more
sourcefn deserialize_unit_struct<V>(
&mut self,
_: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_unit_struct<V>(
&mut self,
_: &'static str,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a unit struct. This allows
deserializers to a unit struct that aren’t tagged as a unit struct. Read more
sourcefn deserialize_tuple_struct<V>(
&mut self,
_: &'static str,
_: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_tuple_struct<V>(
&mut self,
_: &'static str,
_: usize,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a tuple struct. This allows
deserializers to parse sequences that aren’t tagged as sequences. Read more
sourcefn deserialize_struct<V>(
&mut self,
_: &'static str,
_: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_struct<V>(
&mut self,
_: &'static str,
_: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
This method hints that the Deserialize
type is expecting a struct. This allows
deserializers to parse sequences that aren’t tagged as maps. Read more
sourcefn deserialize_struct_field<V>(
&mut self,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
fn deserialize_struct_field<V>(
&mut self,
visitor: V
) -> Result<V::Value, Self::Error> where
V: Visitor,
Auto Trait Implementations
impl RefUnwindSafe for Deserializer
impl Send for Deserializer
impl Sync for Deserializer
impl Unpin for Deserializer
impl UnwindSafe for Deserializer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more