Merge pull request #536 from hyperium/form-url-encoded

feat(header): add ContentType::form_url_encoded() constructor
This commit is contained in:
Sean McArthur
2015-05-16 17:57:35 -07:00

View File

@@ -53,6 +53,11 @@ impl ContentType {
ContentType(mime!(Text/Html; Charset=Utf8))
}
/// A constructor to easily create a `Content-Type: application/www-form-url-encoded` header.
#[inline]
pub fn form_url_encoded() -> ContentType {
ContentType(mime!(Application/WwwFormUrlEncoded))
}
/// A constructor to easily create a `Content-Type: image/jpeg` header.
#[inline]
pub fn jpeg() -> ContentType {
@@ -65,4 +70,5 @@ impl ContentType {
ContentType(mime!(Image/Png))
}
}
bench_header!(bench, ContentType, { vec![b"application/json; charset=utf-8".to_vec()] });