pub struct TimelineEvent {
pub event: Raw<AnyTimelineEvent>,
pub encryption_info: Option<EncryptionInfo>,
}Fields
event: Raw<AnyTimelineEvent>The actual event.
encryption_info: Option<EncryptionInfo>The encryption info about the event. Will be None if the event was not
encrypted.
Trait Implementations
sourceimpl Clone for TimelineEvent
impl Clone for TimelineEvent
sourcefn clone(&self) -> TimelineEvent
fn clone(&self) -> TimelineEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TimelineEvent
impl Debug for TimelineEvent
sourceimpl From<TimelineEvent> for SyncTimelineEvent
impl From<TimelineEvent> for SyncTimelineEvent
sourcefn from(o: TimelineEvent) -> Self
fn from(o: TimelineEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for TimelineEvent
impl Send for TimelineEvent
impl Sync for TimelineEvent
impl Unpin for TimelineEvent
impl UnwindSafe for TimelineEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more