Struct json_with_comments::value::de::enum::ValueEnumDeserializer
source · pub struct ValueEnumDeserializer<'de, I, F> { /* private fields */ }
Implementations§
source§impl<'de, I, F> ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
impl<'de, I, F> ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
pub fn new(variant: &'de str, value: Option<&'de JsoncValue<I, F>>) -> Self
Trait Implementations§
source§impl<'de, I, F> EnumAccess<'de> for ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
impl<'de, I, F> EnumAccess<'de> for ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
§type Error = JsonWithCommentsError
type Error = JsonWithCommentsError
The error type that can be returned if some error occurs during
deserialization.
§type Variant = ValueEnumDeserializer<'de, I, F>
type Variant = ValueEnumDeserializer<'de, I, F>
The
Visitor
that will be used to deserialize the content of the enum
variant.source§fn variant_seed<V>(
self,
seed: V
) -> Result<(V::Value, Self::Variant), Self::Error>where
V: DeserializeSeed<'de>,
fn variant_seed<V>(
self,
seed: V
) -> Result<(V::Value, Self::Variant), Self::Error>where
V: DeserializeSeed<'de>,
variant
is called to identify which variant to deserialize. Read moresource§impl<'de, I, F> VariantAccess<'de> for ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
impl<'de, I, F> VariantAccess<'de> for ValueEnumDeserializer<'de, I, F>where
I: ToPrimitive,
F: ToPrimitive,
§type Error = JsonWithCommentsError
type Error = JsonWithCommentsError
The error type that can be returned if some error occurs during
deserialization. Must match the error type of our
EnumAccess
.source§fn unit_variant(self) -> Result<(), Self::Error>
fn unit_variant(self) -> Result<(), Self::Error>
Called when deserializing a variant with no values. Read more
source§fn newtype_variant_seed<S>(self, seed: S) -> Result<S::Value, Self::Error>where
S: DeserializeSeed<'de>,
fn newtype_variant_seed<S>(self, seed: S) -> Result<S::Value, Self::Error>where
S: DeserializeSeed<'de>,
Called when deserializing a variant with a single value. Read more
source§fn tuple_variant<V>(
self,
_len: usize,
visitor: V
) -> Result<V::Value, Self::Error>where
V: Visitor<'de>,
fn tuple_variant<V>(
self,
_len: usize,
visitor: V
) -> Result<V::Value, Self::Error>where
V: Visitor<'de>,
Called when deserializing a tuple-like variant. Read more
source§fn struct_variant<V>(
self,
_fields: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error>where
V: Visitor<'de>,
fn struct_variant<V>(
self,
_fields: &'static [&'static str],
visitor: V
) -> Result<V::Value, Self::Error>where
V: Visitor<'de>,
Called when deserializing a struct-like variant. Read more
source§fn newtype_variant<T>(self) -> Result<T, Self::Error>where
T: Deserialize<'de>,
fn newtype_variant<T>(self) -> Result<T, Self::Error>where
T: Deserialize<'de>,
Called when deserializing a variant with a single value. Read more
Auto Trait Implementations§
impl<'de, I, F> RefUnwindSafe for ValueEnumDeserializer<'de, I, F>where
F: RefUnwindSafe,
I: RefUnwindSafe,
impl<'de, I, F> Send for ValueEnumDeserializer<'de, I, F>
impl<'de, I, F> Sync for ValueEnumDeserializer<'de, I, F>
impl<'de, I, F> Unpin for ValueEnumDeserializer<'de, I, F>
impl<'de, I, F> UnwindSafe for ValueEnumDeserializer<'de, I, F>where
F: RefUnwindSafe,
I: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more