pub type Result<T> = Result<T, Error>;
Expand description
A type alias for Result
with a Planus error
It is recommended to handle reading of serialized data in functions returning this result type to avoid boilerplate error handling using the ? operator.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}