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

Trait implemented for types that can be obtained from Objects.

Required Methods

Implementations on Foreign Types

Implementors