pub trait StateRegistry:
Send
+ Sync
+ 'static { }Expand description
Marker trait for the type-level state registry.
The state registry is a type-level set represented as nested tuples:
()represents the empty set(T, S)represents the set containing T plus all types in S
This enables compile-time verification that state types are registered before they are used by handlers.