http_type/json/
type.rs

1use crate::*;
2
3/// A type alias for `Result` with `JsonError` as the error type.
4pub type ResultJsonError<T> = Result<T, JsonError>;