pub trait TypedObj: Typed {
    fn serialize(self, out: &mut ObjValueBuilder) -> Result<()>;
    fn parse(obj: &ObjValue) -> Result<Self>;

    fn into_object(self) -> Result<ObjValue> { ... }
}

Required Methods§

Provided Methods§

Implementors§