pub type OriginalMemberHintsEvent = OriginalStateEvent<MemberHintsEventContent>;
Expand description
An io.element.functional_members
event.
Aliased Type§
struct OriginalMemberHintsEvent {
pub content: MemberHintsEventContent,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub room_id: OwnedRoomId,
pub state_key: EmptyStateKey,
pub unsigned: StateUnsigned<PossiblyRedactedMemberHintsEventContent>,
}
Fields§
§content: MemberHintsEventContent
Data specific to the event type.
event_id: OwnedEventId
The globally unique event identifier for the user who sent the event.
sender: OwnedUserId
The fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpoch
Timestamp in milliseconds on originating homeserver when this event was sent.
room_id: OwnedRoomId
The ID of the room associated with this event.
state_key: EmptyStateKey
A unique key which defines the overwriting semantics for this piece of room state.
This is often an empty string, but some events send a UserId
to show which user the event
affects.
unsigned: StateUnsigned<PossiblyRedactedMemberHintsEventContent>
Additional key-value pairs not signed by the homeserver.
Trait Implementations
Source§impl<C: Clone + StaticStateEventContent> Clone for OriginalStateEvent<C>
impl<C: Clone + StaticStateEventContent> Clone for OriginalStateEvent<C>
Source§fn clone(&self) -> OriginalStateEvent<C>
fn clone(&self) -> OriginalStateEvent<C>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<C: Debug + StaticStateEventContent> Debug for OriginalStateEvent<C>
impl<C: Debug + StaticStateEventContent> Debug for OriginalStateEvent<C>
Source§impl<'de, C> Deserialize<'de> for OriginalStateEvent<C>where
C: EventContentFromType + StaticStateEventContent,
impl<'de, C> Deserialize<'de> for OriginalStateEvent<C>where
C: EventContentFromType + StaticStateEventContent,
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more