/// The value supplied to `#[http_status(...)]`.
#[derive(Debug, Clone)]pub(crate)enumHttpStatusValue{/// An integer literal such as `404`, validated by the derive macro.
Code(u16),/// A path expression such as `StatusCode::NOT_FOUND`, validated by rustc.
Path(syn::Path),}