Macro const_str::verified_header_name[][src]

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

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");