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
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
Error
trait to core.panic_error
function tocore::panic
.PanicInfo
so that it can store a&dyn Error + 'static
instead of aBox<dyn Any>
(it might need to beBox
ed as well).dyn Error
instead ofdyn Any
if it is available, and to iterate over sources.unwrap
andexpect
to make them report errors viapanic_error
instead ofpanic!
when theErr
type implementsError
.Questions to resolve:
Error
trait need to be moved into core for this to work?Err
type interact with unwinding?Box
ing the&dyn Error + 'static
inPanicInfo
? Can the error be caught and handled as a payload? Do we wish to avoid this?The text was updated successfully, but these errors were encountered: