Struct zvariant::DeserializeValue[][src]

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]> = from_slice(&encoded, ctxt).unwrap();

Tuple Fields

0: T

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more

Get the signature for the implementing type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.