pub trait FromRon<'a>where
Self: Sized + Deserialize<'a>,{
// Provided method
fn from_ron(ron: &'a str) -> Result<Self, Error> { ... }
}Expand description
Trait with default method, that allows to create an implementor from given RON.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.