Enum ruma::events::AnyTimelineEvent
source · pub enum AnyTimelineEvent {
MessageLike(AnyMessageLikeEvent),
State(AnyStateEvent),
}
Expand description
Any room event.
Variants§
Implementations§
source§impl AnyTimelineEvent
impl AnyTimelineEvent
sourcepub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Returns this event’s origin_server_ts
field.
sourcepub fn transaction_id(&self) -> Option<&TransactionId>
pub fn transaction_id(&self) -> Option<&TransactionId>
Returns this event’s transaction_id
from inside unsigned
, if there is one.
sourcepub fn event_type(&self) -> TimelineEventType
pub fn event_type(&self) -> TimelineEventType
Returns this event’s type
.
Trait Implementations§
source§impl Clone for AnyTimelineEvent
impl Clone for AnyTimelineEvent
source§fn clone(&self) -> AnyTimelineEvent
fn clone(&self) -> AnyTimelineEvent
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 AnyTimelineEvent
impl Debug for AnyTimelineEvent
source§impl<'de> Deserialize<'de> for AnyTimelineEvent
impl<'de> Deserialize<'de> for AnyTimelineEvent
source§fn deserialize<D>(
deserializer: D,
) -> Result<AnyTimelineEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<AnyTimelineEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<AnyMessageLikeEvent> for AnyTimelineEvent
impl From<AnyMessageLikeEvent> for AnyTimelineEvent
source§fn from(c: AnyMessageLikeEvent) -> AnyTimelineEvent
fn from(c: AnyMessageLikeEvent) -> AnyTimelineEvent
Converts to this type from the input type.
source§impl From<AnyStateEvent> for AnyTimelineEvent
impl From<AnyStateEvent> for AnyTimelineEvent
source§fn from(c: AnyStateEvent) -> AnyTimelineEvent
fn from(c: AnyStateEvent) -> AnyTimelineEvent
Converts to this type from the input type.
source§impl From<AnyTimelineEvent> for AnySyncTimelineEvent
impl From<AnyTimelineEvent> for AnySyncTimelineEvent
source§fn from(ev: AnyTimelineEvent) -> AnySyncTimelineEvent
fn from(ev: AnyTimelineEvent) -> AnySyncTimelineEvent
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AnyTimelineEvent
impl RefUnwindSafe for AnyTimelineEvent
impl Send for AnyTimelineEvent
impl Sync for AnyTimelineEvent
impl Unpin for AnyTimelineEvent
impl UnwindSafe for AnyTimelineEvent
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
)