pub trait StateRepr { type Item: RawState; }
The StateRepr trait defines the base type for stateful items, allowing for a generic item type to be associated with the state.
StateRepr