Enum matrix_sdk_base::ruma::events::room::redaction::SyncRoomRedactionEvent
pub enum SyncRoomRedactionEvent {
Original(OriginalSyncRoomRedactionEvent),
Redacted(RedactedSyncRoomRedactionEvent),
}
Expand description
A possibly-redacted redaction event without a room_id
.
Variants§
Original(OriginalSyncRoomRedactionEvent)
Original, unredacted form of the event.
Redacted(RedactedSyncRoomRedactionEvent)
Redacted form of the event with minimal fields.
Implementations§
§impl SyncRoomRedactionEvent
impl SyncRoomRedactionEvent
pub fn event_type(&self) -> MessageLikeEventType
pub fn event_type(&self) -> MessageLikeEventType
Returns the type
of this event.
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Returns this event’s origin_server_ts
field.
pub 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.
pub fn as_original(&self) -> Option<&OriginalSyncRoomRedactionEvent>
pub fn as_original(&self) -> Option<&OriginalSyncRoomRedactionEvent>
Get the inner SyncRoomRedactionEvent
if this is an unredacted event.
pub fn into_full_event(self, room_id: OwnedRoomId) -> RoomRedactionEvent
pub fn into_full_event(self, room_id: OwnedRoomId) -> RoomRedactionEvent
Convert this sync event into a full event (one with a room_id
field).
Trait Implementations§
§impl Clone for SyncRoomRedactionEvent
impl Clone for SyncRoomRedactionEvent
§fn clone(&self) -> SyncRoomRedactionEvent
fn clone(&self) -> SyncRoomRedactionEvent
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 Debug for SyncRoomRedactionEvent
impl Debug for SyncRoomRedactionEvent
§impl<'de> Deserialize<'de> for SyncRoomRedactionEvent
impl<'de> Deserialize<'de> for SyncRoomRedactionEvent
§fn deserialize<D>(
deserializer: D
) -> Result<SyncRoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<SyncRoomRedactionEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<RoomRedactionEvent> for SyncRoomRedactionEvent
impl From<RoomRedactionEvent> for SyncRoomRedactionEvent
§fn from(full: RoomRedactionEvent) -> SyncRoomRedactionEvent
fn from(full: RoomRedactionEvent) -> SyncRoomRedactionEvent
Converts to this type from the input type.
§impl From<SyncRoomRedactionEvent> for AnySyncMessageLikeEvent
impl From<SyncRoomRedactionEvent> for AnySyncMessageLikeEvent
§fn from(c: SyncRoomRedactionEvent) -> AnySyncMessageLikeEvent
fn from(c: SyncRoomRedactionEvent) -> AnySyncMessageLikeEvent
Converts to this type from the input type.
impl RedactionEvent for SyncRoomRedactionEvent
Available on crate feature
canonical-json
only.Auto Trait Implementations§
impl RefUnwindSafe for SyncRoomRedactionEvent
impl Send for SyncRoomRedactionEvent
impl Sync for SyncRoomRedactionEvent
impl Unpin for SyncRoomRedactionEvent
impl UnwindSafe for SyncRoomRedactionEvent
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