pub trait ToObject {
    fn to_obj(self) -> Result<Object>;
}
Expand description

Trait implemented for types that can be converted into Objects.

Required Methods

Implementations on Foreign Types

Implementors