Struct httparse::Header [−][src]
Represents a parsed header.
Fields
name: &'a str
The name portion of a header.
A header name must be valid ASCII-US, so it's safe to store as a &str
.
value: &'a [u8]
The value portion of a header.
While headers should be ASCII-US, the specification allows for values that may not be, and so the value is stored as bytes.
Trait Implementations
impl<'a> Copy for Header<'a>
[src]
impl<'a> Copy for Header<'a>
impl<'a> Clone for Header<'a>
[src]
[+]
impl<'a> Clone for Header<'a>
impl<'a> PartialEq for Header<'a>
[src]
[+]
impl<'a> PartialEq for Header<'a>
impl<'a> Debug for Header<'a>
[src]
[+]
impl<'a> Debug for Header<'a>