Enum matrix_sdk_base::ruma::events::room::redaction::SyncRoomRedactionEvent
source · 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§
source§impl SyncRoomRedactionEvent
impl SyncRoomRedactionEvent
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<&OriginalSyncRoomRedactionEvent>
pub fn as_original(&self) -> Option<&OriginalSyncRoomRedactionEvent>
Get the inner SyncRoomRedactionEvent
if this is an unredacted event.
sourcepub 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§
source§impl Clone for SyncRoomRedactionEvent
impl Clone for SyncRoomRedactionEvent
source§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 moresource§impl Debug for SyncRoomRedactionEvent
impl Debug for SyncRoomRedactionEvent
source§impl<'de> Deserialize<'de> for SyncRoomRedactionEvent
impl<'de> Deserialize<'de> for SyncRoomRedactionEvent
source§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
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.
source§impl From<SyncRoomRedactionEvent> for AnySyncMessageLikeEvent
impl From<SyncRoomRedactionEvent> for AnySyncMessageLikeEvent
source§fn from(c: SyncRoomRedactionEvent) -> AnySyncMessageLikeEvent
fn from(c: SyncRoomRedactionEvent) -> AnySyncMessageLikeEvent
Converts to this type from the input type.
impl RedactionEvent for SyncRoomRedactionEvent
Auto Trait Implementations§
impl Freeze for SyncRoomRedactionEvent
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
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
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more