zvariant

Struct DeserializeValue

Source
pub struct DeserializeValue<'de, T: Type + Deserialize<'de>>(pub T, _);
Expand description

A wrapper to deserialize a value to T: Type + Deserialize.

When the type of a value is well-known, you may avoid the cost and complexity of wrapping to a generic Value and instead use this wrapper.

let decoded: DeserializeValue<[u8; 3]> = encoded.deserialize().unwrap().0;

Tuple Fields§

§0: T

Trait Implementations§

Source§

impl<'de, T: Type + Deserialize<'de>> Deserialize<'de> for DeserializeValue<'de, T>

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'de, T: Type + Deserialize<'de>> Type for DeserializeValue<'de, T>

Source§

const SIGNATURE: &'static Signature = _

The signature for the implementing type, in parsed format. Read more

Auto Trait Implementations§

§

impl<'de, T> Freeze for DeserializeValue<'de, T>
where T: Freeze,

§

impl<'de, T> RefUnwindSafe for DeserializeValue<'de, T>
where T: RefUnwindSafe,

§

impl<'de, T> Send for DeserializeValue<'de, T>
where T: Send + Sync,

§

impl<'de, T> Sync for DeserializeValue<'de, T>
where T: Sync,

§

impl<'de, T> Unpin for DeserializeValue<'de, T>
where T: Unpin,

§

impl<'de, T> UnwindSafe for DeserializeValue<'de, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<'de, T> DynamicDeserialize<'de> for T
where T: Type + Deserialize<'de>,

Source§

type Deserializer = PhantomData<T>

A DeserializeSeed implementation for this type.
Source§

fn deserializer_for_signature( signature: &Signature, ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>

Get a deserializer compatible with this parsed signature.
Source§

impl<T> DynamicType for T
where T: Type + ?Sized,

Source§

fn signature(&self) -> Signature

The type signature for self. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.