You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until Valuable reaches 1.0, http will most likely not depend on valuable, so we should provide a bridge. This crate would provide wrappers for types in http that implement Valuable.
Then, users can do:
use valuable::Valuable;use valuable_http::Request;Request::from(my_request).as_value()
One open question: what argument should the Request type take?
http::Request
&http::Request
impl AsRef<http::Request>
The text was updated successfully, but these errors were encountered:
Until Valuable reaches 1.0, http will most likely not depend on valuable, so we should provide a bridge. This crate would provide wrappers for types in
http
that implementValuable
.Then, users can do:
One open question: what argument should the
Request
type take?http::Request
&http::Request
impl AsRef<http::Request>
The text was updated successfully, but these errors were encountered: