#[non_exhaustive]pub struct RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,{
    pub content: C,
    pub event_id: OwnedEventId,
    pub sender: OwnedUserId,
    pub origin_server_ts: MilliSecondsSinceUnixEpoch,
    pub unsigned: RedactedUnsigned,
}Available on crate feature 
events only.Expand description
A redacted message-like event without a room_id.
RedactedSyncMessageLikeEvent implements the comparison traits using only the event_id field,
a sorted list would be sorted lexicographically based on the event’s EventId.
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: CData specific to the event type.
event_id: OwnedEventIdThe globally unique identifier for the event.
sender: OwnedUserIdThe fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpochTimestamp on the originating homeserver when this event was sent.
unsigned: RedactedUnsignedAdditional key-value pairs not signed by the homeserver.
Implementations§
Source§impl<C> RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
 
impl<C> RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
Sourcepub fn into_full_event(
    self,
    room_id: OwnedRoomId,
) -> RedactedMessageLikeEvent<C>
 
pub fn into_full_event( self, room_id: OwnedRoomId, ) -> RedactedMessageLikeEvent<C>
Convert this sync event into a full event, one with a room_id field.
Trait Implementations§
Source§impl<C> Clone for RedactedSyncMessageLikeEvent<C>where
    C: Clone + RedactedMessageLikeEventContent,
 
impl<C> Clone for RedactedSyncMessageLikeEvent<C>where
    C: Clone + RedactedMessageLikeEventContent,
Source§fn clone(&self) -> RedactedSyncMessageLikeEvent<C>
 
fn clone(&self) -> RedactedSyncMessageLikeEvent<C>
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<C> Debug for RedactedSyncMessageLikeEvent<C>where
    C: Debug + RedactedMessageLikeEventContent,
 
impl<C> Debug for RedactedSyncMessageLikeEvent<C>where
    C: Debug + RedactedMessageLikeEventContent,
Source§impl<'de, C> Deserialize<'de> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent + EventContentFromType,
 
impl<'de, C> Deserialize<'de> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent + EventContentFromType,
Source§fn deserialize<D>(
    deserializer: D,
) -> Result<RedactedSyncMessageLikeEvent<C>, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(
    deserializer: D,
) -> Result<RedactedSyncMessageLikeEvent<C>, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<C> From<RedactedMessageLikeEvent<C>> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
 
impl<C> From<RedactedMessageLikeEvent<C>> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
Source§fn from(event: RedactedMessageLikeEvent<C>) -> RedactedSyncMessageLikeEvent<C>
 
fn from(event: RedactedMessageLikeEvent<C>) -> RedactedSyncMessageLikeEvent<C>
Converts to this type from the input type.
Source§impl<C> Ord for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
 
impl<C> Ord for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
Source§fn cmp(&self, other: &RedactedSyncMessageLikeEvent<C>) -> Ordering
 
fn cmp(&self, other: &RedactedSyncMessageLikeEvent<C>) -> Ordering
Compares EventIds and orders them lexicographically.
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<C> PartialEq for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
 
impl<C> PartialEq for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
Source§impl<C> PartialOrd for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
 
impl<C> PartialOrd for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> Eq for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> JsonCastable<AnySyncMessageLikeEvent> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> JsonCastable<AnySyncTimelineEvent> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> JsonCastable<Map<String, Value>> for RedactedSyncMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> JsonCastable<RedactedSyncMessageLikeEvent<C>> for RedactedMessageLikeEvent<C>where
    C: RedactedMessageLikeEventContent,
impl<C> JsonCastable<SyncMessageLikeEvent<C>> for RedactedSyncMessageLikeEvent<<C as RedactContent>::Redacted>where
    C: MessageLikeEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedMessageLikeEventContent,
Auto Trait Implementations§
impl<C> Freeze for RedactedSyncMessageLikeEvent<C>where
    C: Freeze,
impl<C> RefUnwindSafe for RedactedSyncMessageLikeEvent<C>where
    C: RefUnwindSafe,
impl<C> Send for RedactedSyncMessageLikeEvent<C>where
    C: Send,
impl<C> Sync for RedactedSyncMessageLikeEvent<C>where
    C: Sync,
impl<C> Unpin for RedactedSyncMessageLikeEvent<C>where
    C: Unpin,
impl<C> UnwindSafe for RedactedSyncMessageLikeEvent<C>where
    C: UnwindSafe,
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.