usher
usher copied to clipboard
Parameterized routing for generic resources in Rust
Initially this could be some basic sugar in a macro that just binds all methods (which sucks). In future we could add support for some sort of compact type to...
Originally I felt this was unnecessary, but the currently implementation lends itself well to a builder as there are several advantages of a final `build()` call. - We can drop...
Currently all captures are `Vec`. This is probably the most efficient way we can go by default, but it's not particularly friendly for those who need to then change this...
One feature that other routers seem to like is the ability to plug a new router in as a delegate, rather than just routes themselves. If I create paths `/a`,...