pub type RedactedRoomTopicEvent = RedactedStateEvent<RedactedRoomTopicEventContent>;
Expand description
An m.room.topic
event that has been redacted.
Aliased Type§
struct RedactedRoomTopicEvent {
pub content: RedactedRoomTopicEventContent,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub room_id: OwnedRoomId,
pub state_key: EmptyStateKey,
pub unsigned: RedactedUnsigned,
}
Fields§
§content: RedactedRoomTopicEventContent
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: RedactedUnsigned
Additional key-value pairs not signed by the homeserver.
Trait Implementations
Source§impl<C: Clone + RedactedStateEventContent> Clone for RedactedStateEvent<C>
impl<C: Clone + RedactedStateEventContent> Clone for RedactedStateEvent<C>
Source§fn clone(&self) -> RedactedStateEvent<C>
fn clone(&self) -> RedactedStateEvent<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 + RedactedStateEventContent> Debug for RedactedStateEvent<C>
impl<C: Debug + RedactedStateEventContent> Debug for RedactedStateEvent<C>
Source§impl<'de, C> Deserialize<'de> for RedactedStateEvent<C>where
C: EventContentFromType + RedactedStateEventContent,
impl<'de, C> Deserialize<'de> for RedactedStateEvent<C>where
C: EventContentFromType + RedactedStateEventContent,
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