Open
Description
There are a number of methods in url that return Result<_, ()>
. ()
though does not implement Error
and so does not inter operate cleanly with callers that want to treat the result as Error
(like error-chain).
In today's Rust the best pattern for this is probably to create a single Error
enum for the entire crate to share and return it everywhere.
Would require a major version bump.