use std::collections::HashMap;
use std::io::BufWriter;
pub struct Response {
body: Vec<u8>,
metadata: HashMap<String, String>,
}
impl Default for Response {
fn default() -> Response {
Response::new()
}
}
impl Response {
pub fn new() -> Response {
Response {
body: Vec::new(),
metadata: HashMap::new(),
}
}
pub fn body(&self) -> &[u8] {
self.body.as_ref()
}
pub fn with_bytes(mut self, mut bytes: Vec<u8>) -> Self {
self.body.append(&mut bytes);
self
}
pub fn with_text(mut self, data: String) -> Self {
self.body.append(&mut data.as_bytes().to_vec());
self
}
pub fn writer(&mut self) -> BufWriter<&mut Vec<u8>> {
BufWriter::new(&mut self.body)
}
pub fn with_meta(mut self, key: &str, val: &str) -> Self {
self.metadata.insert(String::from(key), String::from(val));
self
}
pub fn metadata(&self) -> &HashMap<String, String> {
&self.metadata
}
}