pub enum RoomRedactionEvent {
Original(OriginalRoomRedactionEvent),
Redacted(RedactedRoomRedactionEvent),
}
Expand description
A possibly-redacted redaction event.
Variants§
Original(OriginalRoomRedactionEvent)
Original, unredacted form of the event.
Redacted(RedactedRoomRedactionEvent)
Redacted form of the event with minimal fields.
Implementations§
source§impl RoomRedactionEvent
impl RoomRedactionEvent
sourcepub fn event_type(&self) -> MessageLikeEventType
pub fn event_type(&self) -> MessageLikeEventType
Returns the type
of this event.
sourcepub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Returns this event’s origin_server_ts
field.
sourcepub fn redacts(&self, room_version: &RoomVersionId) -> Option<&EventId>
pub fn redacts(&self, room_version: &RoomVersionId) -> Option<&EventId>
Returns the ID of the event that this event redacts, according to the given room version.
§Panics
Panics if this is a non-redacted event and both redacts
field are None
, which is only
possible if the event was modified after being deserialized.
sourcepub fn as_original(&self) -> Option<&OriginalRoomRedactionEvent>
pub fn as_original(&self) -> Option<&OriginalRoomRedactionEvent>
Get the inner RoomRedactionEvent
if this is an unredacted event.
Trait Implementations§
source§impl Clone for RoomRedactionEvent
impl Clone for RoomRedactionEvent
source§fn clone(&self) -> RoomRedactionEvent
fn clone(&self) -> RoomRedactionEvent
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 Debug for RoomRedactionEvent
impl Debug for RoomRedactionEvent
source§impl<'de> Deserialize<'de> for RoomRedactionEvent
impl<'de> Deserialize<'de> for RoomRedactionEvent
source§fn deserialize<D>(
deserializer: D,
) -> Result<RoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<RoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<RoomRedactionEvent> for AnyMessageLikeEvent
impl From<RoomRedactionEvent> for AnyMessageLikeEvent
source§fn from(c: RoomRedactionEvent) -> AnyMessageLikeEvent
fn from(c: RoomRedactionEvent) -> AnyMessageLikeEvent
Converts to this type from the input type.
source§impl From<RoomRedactionEvent> for SyncRoomRedactionEvent
impl From<RoomRedactionEvent> for SyncRoomRedactionEvent
source§fn from(full: RoomRedactionEvent) -> SyncRoomRedactionEvent
fn from(full: RoomRedactionEvent) -> SyncRoomRedactionEvent
Converts to this type from the input type.
impl RedactionEvent for RoomRedactionEvent
Auto Trait Implementations§
impl Freeze for RoomRedactionEvent
impl RefUnwindSafe for RoomRedactionEvent
impl Send for RoomRedactionEvent
impl Sync for RoomRedactionEvent
impl Unpin for RoomRedactionEvent
impl UnwindSafe for RoomRedactionEvent
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)