[][src]Macro const_str::verified_header_name

macro_rules! verified_header_name {
    ($name:literal) => { ... };
}

Returns a compile-time verified header name string literal.

Examples

use http::header::HeaderName;
let name = const_str::verified_header_name!("content-md5");
assert_eq!(HeaderName::from_static(name).as_str(), "content-md5");