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
In some cases, I may already own the pre-allocated readonly &[u8] with the header name/values. How difficult would it be to support the case to create a HeaderName<'a> and HeaderValue<'a> that does not allocate its own memory when not needed?
The text was updated successfully, but these errors were encountered:
Quite unlikely. The lifetime pervades all the other types, and is even a breaking change (I can't remember if you can set defaults, but likely messes with the generic on Request and Response).
In some cases, I may already own the pre-allocated readonly
&[u8]
with the header name/values. How difficult would it be to support the case to create aHeaderName<'a>
andHeaderValue<'a>
that does not allocate its own memory when not needed?The text was updated successfully, but these errors were encountered: