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
Skimming over axum 0.8 while migrating my projects to it, I noticed serve is now properly generic over a listener type and thus not limited to TCP, but this support is done via a trait in the axum crate, meaning orphan rule happiness ensues.
Here is the trait in question:
Logically, there should be an axum/axum08 feature that adds the relevant impl.
The text was updated successfully, but these errors were encountered:
Skimming over axum 0.8 while migrating my projects to it, I noticed
serve
is now properly generic over a listener type and thus not limited to TCP, but this support is done via a trait in the axum crate, meaning orphan rule happiness ensues.Here is the trait in question:
Logically, there should be an
axum
/axum08
feature that adds the relevant impl.The text was updated successfully, but these errors were encountered: