http icon indicating copy to clipboard operation
http copied to clipboard

const fn for `StatusCode::as_u16`

Open y-haidar opened this issue 1 year ago • 1 comments

Are there plans for this? Would like to use it in constant generics.

https://github.com/hyperium/http/blob/bda93204b3da1a776cf471ed39e8e374cec652e7/src/status.rs#L119-L121

Change to this:

    pub const fn as_u16(&self) -> u16 {
        (*self).0.get()
    }

y-haidar avatar Jan 26 '24 16:01 y-haidar