Replace XXXReturn with Result<XXXSuccess, XXXError>
These breaking changes aim at improving usability by allowing users to take advantage of Rust error management features sur as ok_or
, map_err
, expect
and the ?
operator. See the examples
and tutorials
to get an idea of the impacts.
This is part of the improvements disccused in !196 (closed). See !196 (comment 98805) for a decision to chunk the MR.