Skip to content

Commit

Permalink
Include id in Thread's Debug implementation
Browse files Browse the repository at this point in the history
Since Rust 1.19.0, id is a stable method, so there is no reason to
not include it in Debug implementation.
  • Loading branch information
KamilaBorowska committed Mar 27, 2019
1 parent ef4d1c4 commit ba21e0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/libstd/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,10 @@ impl Thread {
#[stable(feature = "rust1", since = "1.0.0")]
impl fmt::Debug for Thread {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Debug::fmt(&self.name(), f)
f.debug_struct("Thread")
.field("id", &self.id())
.field("name", &self.name())
.finish()
}
}

Expand Down

0 comments on commit ba21e0b

Please sign in to comment.