1use crate::helpers::http_code_helper::HttpCode; 2 3/// Trait to convert various types into an HttpCode. 4pub trait IntoHttpCode { 5 fn into_http_code(self) -> HttpCode; 6}