pub type Event = TimelineEvent;
Expand description
The kind of event the event storage holds.
Aliased Type§
struct Event {
pub kind: TimelineEventKind,
pub push_actions: Option<Vec<Action>>,
}
Fields§
§kind: TimelineEventKind
The event itself, together with any information on decryption.
push_actions: Option<Vec<Action>>
The push actions associated with this event.
If it’s set to None
, then it means we couldn’t compute those actions.