logo
pub trait DeserializeWith<F: ?Sized, T, D: Fallible + ?Sized> {
    fn deserialize_with(field: &F, deserializer: &mut D) -> Result<T, D::Error>;
}
Expand description

A variant of Deserialize that works with With wrappers.

Required Methods

Deserializes the field type F using the given deserializer.

Implementors