pub trait FromObject: Sized { fn from_obj(obj: Object) -> Result<Self>; }
Trait implemented for types that can be obtained from Objects.
Object