Type Definition planus::Result

source ·
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.