Type Alias RedactedSyncBeaconInfoEvent
pub type RedactedSyncBeaconInfoEvent = RedactedSyncStateEvent<RedactedBeaconInfoEventContent>;Available on crate feature
unstable-msc3489 only.Expand description
An org.matrix.msc3672.beacon_info event from a sync_events response that has been redacted.
Aliased Type§
struct RedactedSyncBeaconInfoEvent {
pub content: RedactedBeaconInfoEventContent,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub state_key: OwnedUserId,
pub unsigned: RedactedUnsigned,
}Fields§
§content: RedactedBeaconInfoEventContentData specific to the event type.
event_id: OwnedEventIdThe globally unique event identifier for the user who sent the event.
sender: OwnedUserIdThe fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpochTimestamp in milliseconds on originating homeserver when this event was sent.
state_key: OwnedUserIdA 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: RedactedUnsignedAdditional key-value pairs not signed by the homeserver.
Implementations
§impl<C> RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
impl<C> RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
pub fn into_full_event(self, room_id: OwnedRoomId) -> RedactedStateEvent<C>
pub fn into_full_event(self, room_id: OwnedRoomId) -> RedactedStateEvent<C>
Convert this sync event into a full event, one with a room_id field.
Trait Implementations
§impl<C> Clone for RedactedSyncStateEvent<C>
impl<C> Clone for RedactedSyncStateEvent<C>
§fn clone(&self) -> RedactedSyncStateEvent<C>
fn clone(&self) -> RedactedSyncStateEvent<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 more§impl<C> Debug for RedactedSyncStateEvent<C>
impl<C> Debug for RedactedSyncStateEvent<C>
§impl<'de, C> Deserialize<'de> for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent + EventContentFromType,
impl<'de, C> Deserialize<'de> for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent + EventContentFromType,
§fn deserialize<D>(
deserializer: D,
) -> Result<RedactedSyncStateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<RedactedSyncStateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl<C> From<RedactedStateEvent<C>> for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
impl<C> From<RedactedStateEvent<C>> for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
§fn from(event: RedactedStateEvent<C>) -> RedactedSyncStateEvent<C>
fn from(event: RedactedStateEvent<C>) -> RedactedSyncStateEvent<C>
Converts to this type from the input type.
§impl<C> Ord for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
impl<C> Ord for RedactedSyncStateEvent<C>where
C: RedactedStateEventContent,
§fn cmp(&self, other: &RedactedSyncStateEvent<C>) -> Ordering
fn cmp(&self, other: &RedactedSyncStateEvent<C>) -> Ordering
Compares EventIds and orders them lexicographically.
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more