[][src]Trait serde_dhall::de::Deserialize

pub trait Deserialize: Sealed + Sized {
    fn from_dhall(v: &Value) -> Result<Self>;
}

A data structure that can be deserialized from a Dhall expression

This is automatically implemented for any type that serde can deserialize.

This trait cannot be implemented manually.

Required methods

Loading content...

Implementors

impl Deserialize for Value[src]

impl<'a, T> Deserialize for T where
    T: Deserialize<'a>, 
[src]

Loading content...