#[non_exhaustive]pub struct RedactedRoomRedactionEvent {
pub content: RedactedRoomRedactionEventContent,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub room_id: OwnedRoomId,
pub unsigned: RedactedUnsigned,
}Expand description
Redacted redaction event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.content: RedactedRoomRedactionEventContentData 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.
room_id: OwnedRoomIdThe ID of the room associated with this event.
unsigned: RedactedUnsignedAdditional key-value pairs not signed by the homeserver.
Trait Implementations§
Source§impl Clone for RedactedRoomRedactionEvent
impl Clone for RedactedRoomRedactionEvent
Source§fn clone(&self) -> RedactedRoomRedactionEvent
fn clone(&self) -> RedactedRoomRedactionEvent
Returns a duplicate 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 Debug for RedactedRoomRedactionEvent
impl Debug for RedactedRoomRedactionEvent
Source§impl<'de> Deserialize<'de> for RedactedRoomRedactionEvent
impl<'de> Deserialize<'de> for RedactedRoomRedactionEvent
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
Source§impl From<RedactedRoomRedactionEvent> for RedactedSyncRoomRedactionEvent
impl From<RedactedRoomRedactionEvent> for RedactedSyncRoomRedactionEvent
Source§fn from(event: RedactedRoomRedactionEvent) -> Self
fn from(event: RedactedRoomRedactionEvent) -> Self
Converts to this type from the input type.
Source§impl Ord for RedactedRoomRedactionEvent
impl Ord for RedactedRoomRedactionEvent
Source§impl PartialOrd for RedactedRoomRedactionEvent
impl PartialOrd for RedactedRoomRedactionEvent
impl Eq for RedactedRoomRedactionEvent
impl JsonCastable<AnyMessageLikeEvent> for RedactedRoomRedactionEvent
impl JsonCastable<AnySyncMessageLikeEvent> for RedactedRoomRedactionEvent
impl JsonCastable<AnySyncTimelineEvent> for RedactedRoomRedactionEvent
impl JsonCastable<AnyTimelineEvent> for RedactedRoomRedactionEvent
impl JsonCastable<Map<String, Value>> for RedactedRoomRedactionEvent
impl JsonCastable<RedactedSyncRoomRedactionEvent> for RedactedRoomRedactionEvent
impl JsonCastable<RoomRedactionEvent> for RedactedRoomRedactionEvent
impl JsonCastable<SyncRoomRedactionEvent> for RedactedRoomRedactionEvent
Auto Trait Implementations§
impl Freeze for RedactedRoomRedactionEvent
impl RefUnwindSafe for RedactedRoomRedactionEvent
impl Send for RedactedRoomRedactionEvent
impl Sync for RedactedRoomRedactionEvent
impl Unpin for RedactedRoomRedactionEvent
impl UnwindSafe for RedactedRoomRedactionEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.