Skip to content

Commit aa85f60

Browse files
author
Håvar Nøvik
committed
feat(status): implement Hash for StatusCode
Implment the `Hash` trait for the `StatusCode` enum.
1 parent 7b10846 commit aa85f60

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/status.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! HTTP status codes
22
use std::fmt;
33
use std::cmp::Ordering;
4+
use std::hash::{Hash, Hasher};
45

56
// shamelessly lifted from Teepee. I tried a few schemes, this really
67
// does seem like the best. Improved scheme to support arbitrary status codes.
@@ -533,6 +534,12 @@ impl Ord for StatusCode {
533534
}
534535
}
535536

537+
impl Hash for StatusCode {
538+
fn hash<H: Hasher>(&self, state: &mut H) {
539+
self.to_u16().hash(state);
540+
}
541+
}
542+
536543
/// The class of an HTTP `status-code`.
537544
///
538545
/// [RFC 7231, section 6 (Response Status Codes)](https://tools.ietf.org/html/rfc7231#section-6):

0 commit comments

Comments
 (0)