pub struct SyncTimelineEvent {
pub event: Raw<AnySyncTimelineEvent>,
pub encryption_info: Option<EncryptionInfo>,
pub push_actions: Vec<Action>,
pub unsigned_encryption_info: Option<BTreeMap<UnsignedEventLocation, UnsignedDecryptionResult>>,
}
Expand description
A customized version of a room event coming from a sync that holds optional encryption info.
Fields§
§event: Raw<AnySyncTimelineEvent>
The actual event.
encryption_info: Option<EncryptionInfo>
The encryption info about the event. Will be None
if the event was not
encrypted.
push_actions: Vec<Action>
The push actions associated with this event.
unsigned_encryption_info: Option<BTreeMap<UnsignedEventLocation, UnsignedDecryptionResult>>
The encryption info about the events bundled in the unsigned
object.
Will be None
if no bundled event was encrypted.
Implementations§
source§impl SyncTimelineEvent
impl SyncTimelineEvent
sourcepub fn new(event: Raw<AnySyncTimelineEvent>) -> Self
pub fn new(event: Raw<AnySyncTimelineEvent>) -> Self
Create a new SyncTimelineEvent
from the given raw event.
This is a convenience constructor for when you don’t need to set
encryption_info
or push_action
, for example inside a test.
sourcepub fn new_with_push_actions(
event: Raw<AnySyncTimelineEvent>,
push_actions: Vec<Action>,
) -> Self
pub fn new_with_push_actions( event: Raw<AnySyncTimelineEvent>, push_actions: Vec<Action>, ) -> Self
Create a new SyncTimelineEvent
from the given raw event and push
actions.
This is a convenience constructor for when you don’t need to set
encryption_info
, for example inside a test.
sourcepub fn event_id(&self) -> Option<OwnedEventId>
pub fn event_id(&self) -> Option<OwnedEventId>
Get the event id of this SyncTimelineEvent
if the event has any valid
id.
Trait Implementations§
source§impl Clone for SyncTimelineEvent
impl Clone for SyncTimelineEvent
source§fn clone(&self) -> SyncTimelineEvent
fn clone(&self) -> SyncTimelineEvent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SyncTimelineEvent
impl Debug for SyncTimelineEvent
source§impl<'de> Deserialize<'de> for SyncTimelineEvent
impl<'de> Deserialize<'de> for SyncTimelineEvent
source§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>,
source§impl From<Raw<AnySyncTimelineEvent>> for SyncTimelineEvent
impl From<Raw<AnySyncTimelineEvent>> for SyncTimelineEvent
source§impl From<TimelineEvent> for SyncTimelineEvent
impl From<TimelineEvent> for SyncTimelineEvent
source§fn from(o: TimelineEvent) -> Self
fn from(o: TimelineEvent) -> Self
Auto Trait Implementations§
impl Freeze for SyncTimelineEvent
impl RefUnwindSafe for SyncTimelineEvent
impl Send for SyncTimelineEvent
impl Sync for SyncTimelineEvent
impl Unpin for SyncTimelineEvent
impl UnwindSafe for SyncTimelineEvent
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
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)
clone_to_uninit
)