pub type StateMap<T> = HashMap<(StateEventType, String), T>;
Expand description
A mapping of event type and state_key to some value T
, usually an EventId
.
This is the representation of what the Matrix specification calls a “room state” or a “state map” during state resolution.
Aliased Type§
struct StateMap<T> { /* private fields */ }