File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ impl fmt::Display for RawStatus {
82
82
83
83
impl From < StatusCode > for RawStatus {
84
84
fn from ( status : StatusCode ) -> RawStatus {
85
- RawStatus ( status. to_u16 ( ) , Cow :: Borrowed ( status. canonical_reason ( ) . unwrap_or ( "" ) ) )
85
+ RawStatus ( status. into ( ) , Cow :: Borrowed ( status. canonical_reason ( ) . unwrap_or ( "" ) ) )
86
86
}
87
87
}
88
88
Original file line number Diff line number Diff line change 2
2
use std:: fmt;
3
3
use std:: cmp:: Ordering ;
4
4
5
- // shamelessly lifted from Teepee. I tried a few schemes, this really
6
- // does seem like the best. Improved scheme to support arbitrary status codes.
7
-
8
5
/// An HTTP status code (`status-code` in RFC 7230 et al.).
9
6
///
10
7
/// This enum contains all common status codes and an Unregistered
@@ -230,6 +227,7 @@ pub enum StatusCode {
230
227
impl StatusCode {
231
228
232
229
#[ doc( hidden) ]
230
+ // Not part of public API or API contract. Could disappear.
233
231
pub fn from_u16 ( n : u16 ) -> StatusCode {
234
232
match n {
235
233
100 => StatusCode :: Continue ,
@@ -296,8 +294,7 @@ impl StatusCode {
296
294
}
297
295
}
298
296
299
- #[ doc( hidden) ]
300
- pub fn to_u16 ( & self ) -> u16 {
297
+ fn to_u16 ( & self ) -> u16 {
301
298
match * self {
302
299
StatusCode :: Continue => 100 ,
303
300
StatusCode :: SwitchingProtocols => 101 ,
@@ -553,6 +550,12 @@ impl Default for StatusCode {
553
550
}
554
551
}
555
552
553
+ impl Into < u16 > for StatusCode {
554
+ fn into ( self ) -> u16 {
555
+ self . to_u16 ( )
556
+ }
557
+ }
558
+
556
559
/// The class of an HTTP `status-code`.
557
560
///
558
561
/// [RFC 7231, section 6 (Response Status Codes)](https://tools.ietf.org/html/rfc7231#section-6):
You can’t perform that action at this time.
0 commit comments