pub trait LazyDeserialize
where Self: Sized,
{ // Required method fn deserialize(absolute_path: String) -> Result<Self, LoadError>; }
Expand description

deserialize trait that works by offloading deserialization to desired format’s deserializer

Required Methods§

source

fn deserialize(absolute_path: String) -> Result<Self, LoadError>

Object Safety§

This trait is not object safe.

Implementors§