http_field/
lib.rs

1//! HTTP fields (headers & trailers).
2
3/// Field name.
4#[derive(Debug, Clone, PartialEq)]
5pub struct FieldName<'a> {
6    slice: &'a [u8],
7}
8
9/// Field value.
10#[derive(Debug, Clone, PartialEq)]
11pub struct FieldValue<'a> {
12    slice: &'a [u8],
13}