You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Enet4, JesseWright, CYBAI, andrewdavidmackenzie, hoijui and 3 more