Searched defs:content_type (Results 1 – 2 of 2) sorted by relevance
29 let content_type = res.headers().get(header::CONTENT_TYPE).unwrap().clone(); in binary_request() localVariable30 let content_type = content_type.to_str().unwrap(); in binary_request() localVariable52 let content_type = res.headers().get(header::CONTENT_TYPE).unwrap().clone(); in text_request() localVariable53 let content_type = content_type.to_str().unwrap(); in text_request() localVariable
33 fn content_type(headers: &HeaderMap) -> Option<&str> { in content_type() function