-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Err from thread should implement Show #21291
Comments
This is |
aturon
added a commit
to aturon/rust
that referenced
this issue
Apr 10, 2015
Make `Box<Any + Send>` implement `Debug`. Fixes rust-lang#21291
aturon
added a commit
to aturon/rust
that referenced
this issue
Apr 10, 2015
Makes `Any + Send` implement `Debug`. Fixes rust-lang#21291
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 10, 2015
…chton Make `Box<Any + Send>` implement `Debug`. Fixes rust-lang#21291
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Apr 10, 2015
…chton Make `Box<Any + Send>` implement `Debug`. Fixes rust-lang#21291
bors
added a commit
that referenced
this issue
Apr 11, 2015
Make `Box<Any + Send>` implement `Debug`. Fixes #21291
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's strange that you can't do
Thread::spawn(foo).join().unwrap()
, but it's becauseBox<core::any::Any + Send>
doesn't implement Show. An un-Showable Err seems like an undesirable thing to have around, is it necessary in this case?The text was updated successfully, but these errors were encountered: