pub trait FromSerializable {
    // Required method
    fn from_serializable(data: impl Serialize) -> Result<Self>
       where Self: Sized;
}
Expand description

Convert any Serialize object into

Required Methods§

source

fn from_serializable(data: impl Serialize) -> Result<Self>
where Self: Sized,

Implementors§