pub trait IntoJsonResult<T> {
    fn into_result(self) -> Result<T>;
}

Required Methods

Implementors