We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hash
StatusCode
1 parent 7b10846 commit aa85f60Copy full SHA for aa85f60
src/status.rs
@@ -1,6 +1,7 @@
1
//! HTTP status codes
2
use std::fmt;
3
use std::cmp::Ordering;
4
+use std::hash::{Hash, Hasher};
5
6
// shamelessly lifted from Teepee. I tried a few schemes, this really
7
// does seem like the best. Improved scheme to support arbitrary status codes.
@@ -533,6 +534,12 @@ impl Ord for StatusCode {
533
534
}
535
536
537
+impl Hash for StatusCode {
538
+ fn hash<H: Hasher>(&self, state: &mut H) {
539
+ self.to_u16().hash(state);
540
+ }
541
+}
542
+
543
/// The class of an HTTP `status-code`.
544
///
545
/// [RFC 7231, section 6 (Response Status Codes)](https://tools.ietf.org/html/rfc7231#section-6):
0 commit comments