pub trait Deserializer<Dto> {
    // Required method
    fn deserialize<'a>(&self, value: Serialized) -> DceResult<Dto>;
}

Required Methods§

source

fn deserialize<'a>(&self, value: Serialized) -> DceResult<Dto>

Trait Implementations§

source§

impl<Dto> Debug for dyn Deserializer<Dto> + Send + Sync

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§