this post was submitted on 22 Aug 2023
23 points (100.0% liked)
Rust
5966 readers
26 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Seems to be a wrapper around implementing the "index into data store"-pattern (not sure if there is a better name), but without support for removal from said data store.
From a quick glance I don't really see what this gives you that wouldn't also be quite easy with a manual implementation. And then you avoid the proc macro compile time overhead as well.
It gives you more type safety, because you use a
ProxyᐸFooᐳ
instead of justusize
.In my manual implementation I would assume you would use a newtype, so not really relevant.