pub trait IntoResponseHeadParts {
// Required method
fn into_response_head(
self,
head: ResponseHeadParts,
) -> Result<ResponseHeadParts, BoxedErrorResponse>;
}Expand description
Implemented by types that form or can be converted into a type that forms the
ResponseHeadParts.