Earlier quoted context omitted.
I have a app that have been ported from old python -> f# -> rust (e-commerce like) and the transition was great ( https://www.reddit.com/r/rust/comments/hh9tz6/does_rust_have... ). You need to pay attention in how align the whole software stack. Pairing Rust with tailwinds and htmx or Hotwire simplify so much stuff is like cheating. For regular CRUD flows having enums/traits/iterators make domain modeling very good a…
Can you share a bit about how you’ve integrated Hotwire with Rust? I recently wondered how well they’d pair.
With this kind of library, your rust code is the same as processing regular html forms, is only the HTML that need to be annotated.
MAYBE you could optimize partial rendering detecting just the portion to change:
https://htmx.org/docs/#requests
But I not bother with that.