1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
pub use const_str_proc_macro::verified_header_name;
/// Returns a compile-time verified header name string literal.
///
/// This macro requires the feature `verify-http`.
///
/// # Examples
///
/// ```
/// use http::header::HeaderName;
/// let name = const_str::verified_header_name!("content-md5");
/// assert_eq!(HeaderName::from_static(name).as_str(), "content-md5");
/// ```
///
#[macro_export]
macro_rules! verified_header_name {
($name: literal) => {
$crate::__proc::verified_header_name!($name)
};
}