logo
pub trait StateEventContent: EventContent<EventType = StateEventType> {
    type StateKey: AsRef<str> + Clone + Debug + DeserializeOwned + Serialize;
    type Unsigned: Clone + Debug + Default + CanBeEmpty + StateUnsignedFromParts + Serialize;
}
Available on crate feature events only.
Expand description

Content of a redacted state event.

Required Associated Types

The type of the event’s state_key field.

The type of the event’s unsigned field.

Implementors