tomaka / rouille

Web framework in Rust
Apache License 2.0
1.12k stars 106 forks source link

impl Debug for Request #145

Closed mitranim closed 7 years ago

mitranim commented 7 years ago

Pros:

Cons:

Iffy on implementation. There has to be a better way. Thoughts/suggestions?

tomaka commented 7 years ago

Thanks for the PR.

Iffy on implementation. There has to be a better way. Thoughts/suggestions?

Yes, actually! Few people know this, but the Formatter has a method just for this: https://doc.rust-lang.org/std/fmt/struct.Formatter.html#method.debug_struct

I'd prefer if it was implemented that way.

mitranim commented 7 years ago

Changed to Formatter::debug_struct and added an impl Debug for Response.

tomaka commented 7 years ago

Thanks