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§
enum Result<T, E = DecodingError> {
Ok(T),
Err(E),
}
pub type Result<T, E = DecodingError> = Result<T, E>;
decode
only.Either an Ok(T)
or an Err(DecodingError)
.
enum Result<T, E = DecodingError> {
Ok(T),
Err(E),
}