usher icon indicating copy to clipboard operation
usher copied to clipboard

Parameterized routing for generic resources in Rust

Results 4 usher issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

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...

enhancement

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`,...

enhancement