pub trait IterHttpHeaderFields<'a> {
type Fields: Iterator<Item = (&'a str, &'a [u8])>;
// Required method
fn fields(&'a self) -> Self::Fields;
}Expand description
This trait allows to iterate over the fields of a HTTP header.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".