We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
content-type
set_body_{bytes,json,string}
The call to insert_header does nothing here:
insert_header
let followed_page = ResponseTemplate::new(200) .set_body_string(followed_page_html) .insert_header("content-type", "text/html");
and instead requires doing this:
let followed_page = ResponseTemplate::new(200) .set_body_raw(followed_page_html.as_bytes(), "text/html; charset=utf-8");
I think this is confusing. Defaults are fine I guess, but it's weird that I can't set content-type to whatever I please to overwrite it.
The text was updated successfully, but these errors were encountered:
Also, should the set_body_json really set the mimetype? A user should be able to set their own value anyway.
set_body_json
Sorry, something went wrong.
No branches or pull requests
The call to
insert_header
does nothing here:and instead requires doing this:
I think this is confusing. Defaults are fine I guess, but it's weird that I can't set
content-type
to whatever I please to overwrite it.Related
The text was updated successfully, but these errors were encountered: