logo
pub trait StateEventContent: EventContent<EventType = StateEventType> {
    type StateKey: AsRef<str> + Clone + Debug + DeserializeOwned + Serialize;
}
Expand description

An alias for EventContent<EventType = StateEventType>.

Required Associated Types

The type of the event’s state_key field.

Implementors