pub trait HeaderNameAlg {
const HEADER_NAME: &'static str;
}Expand description
States one header an answer carries.
A name is all a header is to a program. What an interpretation does with one is the same whatever the name, so a header a specification does not state is a marker a domain writes for itself, and no interpretation changes.
Required Associated Constants§
Sourceconst HEADER_NAME: &'static str
const HEADER_NAME: &'static str
The name this header is written under, as the wire spells one.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".