pub type JsonParseResult<T, E> = Result<T, JsonParseError<E>>;Expand description
A convenience type alias for a Result with a JsonParseError as its error type.
Aliased Type§
pub enum JsonParseResult<T, E> {
Ok(T),
Err(JsonParseError<E>),
}pub type JsonParseResult<T, E> = Result<T, JsonParseError<E>>;A convenience type alias for a Result with a JsonParseError as its error type.
pub enum JsonParseResult<T, E> {
Ok(T),
Err(JsonParseError<E>),
}