pub trait IntoHeaders {
// Required method
fn into_headers(self) -> Vec<(String, Vec<u8>)>;
}
Expand description
A trait for any type that can be turned into Response
headers
pub trait IntoHeaders {
// Required method
fn into_headers(self) -> Vec<(String, Vec<u8>)>;
}
A trait for any type that can be turned into Response
headers