pub type Result<T, E = DecodingError> = Result<T, E>;Available on crate feature
decode only.Expand description
Either an Ok(T) or an Err(DecodingError).
Aliased Type§
pub enum Result<T, E = DecodingError> {
Ok(T),
Err(E),
}