Skip to content
New issue

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

add HeaderValue to salvo and prelude #145

Closed
prabirshrestha opened this issue Sep 8, 2022 · 2 comments
Closed

add HeaderValue to salvo and prelude #145

prabirshrestha opened this issue Sep 8, 2022 · 2 comments

Comments

@prabirshrestha
Copy link
Contributor

Currently need to import from hyper.

use hyper::header::HeaderValue;

res.with_header(header::CONTENT_TYPE, HeaderValue::from_static("blah")?, true)?;
@chrislearn
Copy link
Member

Try to use &str directly:

res.with_header(header::CONTENT_TYPE, "blah", true)?;

@prabirshrestha
Copy link
Contributor Author

That works. Not sure why I didn't try it out. Probably need to go to sleep now 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants