pub trait FromObject: Sized {
    fn from_obj(obj: Object) -> Result<Self>;
}

Required Methods

Implementations on Foreign Types

Implementors