#fields #struct-fields #iteration #field

strawberry_fields

Consume, read, and mutate struct fields with an iterator-like api

1 unstable release

0.1.0 Jun 9, 2024

#886 in Data structures

MIT license

12KB
198 lines

Strawberry Fields allows for the "iteration" of struct fields without allocation or manipulating the memory layout of the type.

This crate's api mirrors the Iterator trait from the standard library, with the primary distinction being that there are seperate methods for owned, shared and unique reference types.

FAQ

Q: Why not collect all fields in an array?

A: For very simple structs this may work, but for types which may contain a mix of concrete types and generics, developers would be required to introduce dynamic dispatch or enumeration: this incurs a runtime penalty.

Dependencies

~235–670KB
~16K SLoC