Struct matrix_sdk_common::deserialized_responses::SyncRoomEvent [−][src]
pub struct SyncRoomEvent {
pub event: Raw<AnySyncRoomEvent>,
pub encryption_info: Option<EncryptionInfo>,
}Expand description
A customized version of a room event coming from a sync that holds optional encryption info.
Fields
event: Raw<AnySyncRoomEvent>The actual event.
encryption_info: Option<EncryptionInfo>The encryption info about the event. Will be None if the event was not
encrypted.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for SyncRoomEvent
impl Send for SyncRoomEvent
impl Sync for SyncRoomEvent
impl Unpin for SyncRoomEvent
impl UnwindSafe for SyncRoomEvent
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more