gotham/helpers/http/header.rs
1//! Headers recognised by Gotham which do not exist in the standard headers
2//! provided by the Hyper library.
3
4/// Marks the identifier of a request to a Gotham server.
5pub const X_REQUEST_ID: &str = "x-request-id";
6
7/// Marks the execution time of a Gotham request.
8pub const X_RUNTIME_DURATION: &str = "x-runtime-duration";