pub struct OriginalSyncRoomRedactionEvent {
pub content: RoomRedactionEventContent,
pub redacts: Option<OwnedEventId>,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub unsigned: RoomRedactionUnsigned,
}
Expand description
Redaction event without a room_id
.
Fields§
§content: RoomRedactionEventContent
Data specific to the event type.
redacts: Option<OwnedEventId>
The ID of the event that was redacted.
This field is required in room versions prior to 11.
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.
unsigned: RoomRedactionUnsigned
Additional key-value pairs not signed by the homeserver.
Implementations§
source§impl OriginalSyncRoomRedactionEvent
impl OriginalSyncRoomRedactionEvent
sourcepub fn into_full_event(self, room_id: OwnedRoomId) -> OriginalRoomRedactionEvent
pub fn into_full_event(self, room_id: OwnedRoomId) -> OriginalRoomRedactionEvent
Convert this sync event into a full event, one with a room_id
field.
source§impl OriginalSyncRoomRedactionEvent
impl OriginalSyncRoomRedactionEvent
sourcepub fn redacts(&self, room_version: &RoomVersionId) -> &EventId
pub fn redacts(&self, room_version: &RoomVersionId) -> &EventId
Returns the ID of the event that this event redacts, according to the proper redacts
field
for the given room version.
If the redacts
field is not the proper one for the given room version, this falls back to
the one that is available.
§Panics
Panics if both redacts
field are None
, which is only possible if the event was modified
after being deserialized.
Trait Implementations§
source§impl Clone for OriginalSyncRoomRedactionEvent
impl Clone for OriginalSyncRoomRedactionEvent
source§fn clone(&self) -> OriginalSyncRoomRedactionEvent
fn clone(&self) -> OriginalSyncRoomRedactionEvent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'de> Deserialize<'de> for OriginalSyncRoomRedactionEvent
impl<'de> Deserialize<'de> for OriginalSyncRoomRedactionEvent
source§fn deserialize<D>(
deserializer: D,
) -> Result<OriginalSyncRoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<OriginalSyncRoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl From<OriginalRoomRedactionEvent> for OriginalSyncRoomRedactionEvent
impl From<OriginalRoomRedactionEvent> for OriginalSyncRoomRedactionEvent
source§fn from(value: OriginalRoomRedactionEvent) -> OriginalSyncRoomRedactionEvent
fn from(value: OriginalRoomRedactionEvent) -> OriginalSyncRoomRedactionEvent
impl RedactionEvent for OriginalSyncRoomRedactionEvent
Auto Trait Implementations§
impl Freeze for OriginalSyncRoomRedactionEvent
impl RefUnwindSafe for OriginalSyncRoomRedactionEvent
impl Send for OriginalSyncRoomRedactionEvent
impl Sync for OriginalSyncRoomRedactionEvent
impl Unpin for OriginalSyncRoomRedactionEvent
impl UnwindSafe for OriginalSyncRoomRedactionEvent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)