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
the Error impl of Box<T: Error> does not include the source function, however it contains cause, causing different results when switching from cause to source.
A small code that demonstrates this is here.
Solution: implement source() for Box<T: Error> by forwarding to T::source()