pub(crate) trait FromHttparse<T>: Sized {
// Required method
fn from_httparse(raw: T) -> Result<Self>;
}
Expand description
Trait to convert raw objects into HTTP parseables.
Required Methods§
sourcefn from_httparse(raw: T) -> Result<Self>
fn from_httparse(raw: T) -> Result<Self>
Convert raw object into parsed HTTP headers.
Object Safety§
This trait is not object safe.