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
Currently using from_static to build Uri, Authority, or PathAndQuery types can't be done in a const context. From inspecting what they do under the hood, it seems like the parsing logic would be possible to extract into a const fn. Is there some other limitation preventing these methods from being const?
My use case is building Uri components at compile time for trivial assembly at runtime.
The text was updated successfully, but these errors were encountered:
Currently using
from_static
to buildUri
,Authority
, orPathAndQuery
types can't be done in a const context. From inspecting what they do under the hood, it seems like the parsing logic would be possible to extract into aconst fn
. Is there some other limitation preventing these methods from being const?My use case is building
Uri
components at compile time for trivial assembly at runtime.The text was updated successfully, but these errors were encountered: