pub type ResultJsonError<T> = Result<T, JsonError>;
A type alias for Result with JsonError as the error type.
Result
JsonError
pub enum ResultJsonError<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value