[][src]Struct serde_dyn::TUSM

pub struct TUSM<'de, D> where
    D: Deserializer<'de>, 
{ /* fields omitted */ }

TUSM aka Type Uuid Serde Mapper

This structure maps Type Uuids to Serde functions

Methods

impl<'de, D> TUSM<'de, D> where
    D: Deserializer<'de>, 
[src]

pub fn new() -> Self
[src]

pub fn register<T: DeserializeOwned + Any + TypeUuid>(&mut self)
[src]

Adds the provided type to the list of types this TUSM can deserialize.

pub fn manually_register(
    &mut self,
    uuid: Bytes,
    function: fn(_: D) -> Result<Box<dyn Any>, D::Error>
)
[src]

Adds a mapping entry between the provided UUID and the provided deserialization function.

Please only use this if absolutely necessary, register is the preferred alternative.

pub fn deserialize_with_uuid(
    &self,
    uuid: &Bytes,
    deserializer: D
) -> Result<Box<dyn Any>, SerdeDynError<'de, D>>
[src]

Using the provided UUID, attempt to deserialize the next value according to previously registered mappings.

Trait Implementations

impl<'de, D: Eq> Eq for TUSM<'de, D> where
    D: Deserializer<'de>,
    D::Error: Eq
[src]

impl<'de, D: PartialEq> PartialEq<TUSM<'de, D>> for TUSM<'de, D> where
    D: Deserializer<'de>,
    D::Error: PartialEq
[src]

impl<'de, D: Clone> Clone for TUSM<'de, D> where
    D: Deserializer<'de>,
    D::Error: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'de, D: Debug> Debug for TUSM<'de, D> where
    D: Deserializer<'de>,
    D::Error: Debug
[src]

Auto Trait Implementations

impl<'de, D> Send for TUSM<'de, D>

impl<'de, D> Sync for TUSM<'de, D>

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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