Enum ruma_events::TimelineEventType
source · pub enum TimelineEventType {
Show 60 variants
Audio,
CallAnswer,
CallInvite,
CallHangup,
CallCandidates,
CallNegotiate,
CallReject,
CallSdpStreamMetadataChanged,
CallSelectAnswer,
Emote,
Encrypted,
File,
Image,
KeyVerificationReady,
KeyVerificationStart,
KeyVerificationCancel,
KeyVerificationAccept,
KeyVerificationKey,
KeyVerificationMac,
KeyVerificationDone,
Location,
Message,
PollStart,
UnstablePollStart,
PollResponse,
UnstablePollResponse,
PollEnd,
UnstablePollEnd,
Beacon,
Reaction,
RoomEncrypted,
RoomMessage,
RoomRedaction,
Sticker,
Video,
Voice,
CallNotify,
PolicyRuleRoom,
PolicyRuleServer,
PolicyRuleUser,
RoomAliases,
RoomAvatar,
RoomCanonicalAlias,
RoomCreate,
RoomEncryption,
RoomGuestAccess,
RoomHistoryVisibility,
RoomJoinRules,
RoomMember,
RoomName,
RoomPinnedEvents,
RoomPowerLevels,
RoomServerAcl,
RoomThirdPartyInvite,
RoomTombstone,
RoomTopic,
SpaceChild,
SpaceParent,
BeaconInfo,
CallMember,
// some variants omitted
}
Expand description
The type of TimelineEvent
this is.
This type can hold an arbitrary string. To build events with a custom type, convert it
from a string with ::from()
/ .into()
. To check for events that are not available as a
documented variant here, use its string representation, obtained through .to_string()
.
Variants§
Audio
org.matrix.msc1767.audio
CallAnswer
m.call.answer
CallInvite
m.call.invite
CallHangup
m.call.hangup
CallCandidates
m.call.candidates
CallNegotiate
m.call.negotiate
CallReject
m.call.reject
CallSdpStreamMetadataChanged
m.call.sdp_stream_metadata_changed
CallSelectAnswer
m.call.select_answer
Emote
org.matrix.msc1767.emote
Encrypted
org.matrix.msc1767.encrypted
File
org.matrix.msc1767.file
Image
org.matrix.msc1767.image
KeyVerificationReady
m.key.verification.ready
KeyVerificationStart
m.key.verification.start
KeyVerificationCancel
m.key.verification.cancel
KeyVerificationAccept
m.key.verification.accept
KeyVerificationKey
m.key.verification.key
KeyVerificationMac
m.key.verification.mac
KeyVerificationDone
m.key.verification.done
Location
m.location
Message
org.matrix.msc1767.message
PollStart
m.poll.start
UnstablePollStart
org.matrix.msc3381.poll.start
PollResponse
m.poll.response
UnstablePollResponse
org.matrix.msc3381.poll.response
PollEnd
m.poll.end
UnstablePollEnd
org.matrix.msc3381.poll.end
Beacon
org.matrix.msc3672.beacon
Reaction
m.reaction
RoomEncrypted
m.room.encrypted
RoomMessage
m.room.message
RoomRedaction
m.room.redaction
Sticker
m.sticker
Video
org.matrix.msc1767.video
Voice
org.matrix.msc3245.voice.v2
CallNotify
org.matrix.msc4075.call.notify
PolicyRuleRoom
m.policy.rule.room
PolicyRuleServer
m.policy.rule.server
PolicyRuleUser
m.policy.rule.user
RoomAliases
m.room.aliases
RoomAvatar
m.room.avatar
RoomCanonicalAlias
m.room.canonical_alias
RoomCreate
m.room.create
RoomEncryption
m.room.encryption
RoomGuestAccess
m.room.guest_access
RoomHistoryVisibility
m.room.history_visibility
RoomJoinRules
m.room.join_rules
RoomMember
m.room.member
RoomName
m.room.name
RoomPinnedEvents
m.room.pinned_events
RoomPowerLevels
m.room.power_levels
RoomServerAcl
m.room.server_acl
RoomThirdPartyInvite
m.room.third_party_invite
RoomTombstone
m.room.tombstone
RoomTopic
m.room.topic
SpaceChild
m.space.child
SpaceParent
m.space.parent
BeaconInfo
org.matrix.msc3672.beacon_info
CallMember
org.matrix.msc3401.call.member
Trait Implementations§
source§impl Clone for TimelineEventType
impl Clone for TimelineEventType
source§fn clone(&self) -> TimelineEventType
fn clone(&self) -> TimelineEventType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TimelineEventType
impl Debug for TimelineEventType
source§impl<'de> Deserialize<'de> for TimelineEventType
impl<'de> Deserialize<'de> for TimelineEventType
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 Display for TimelineEventType
impl Display for TimelineEventType
source§impl From<&str> for TimelineEventType
impl From<&str> for TimelineEventType
source§impl From<MessageLikeEventType> for TimelineEventType
impl From<MessageLikeEventType> for TimelineEventType
source§fn from(s: MessageLikeEventType) -> Self
fn from(s: MessageLikeEventType) -> Self
source§impl From<StateEventType> for TimelineEventType
impl From<StateEventType> for TimelineEventType
source§fn from(s: StateEventType) -> Self
fn from(s: StateEventType) -> Self
source§impl From<String> for TimelineEventType
impl From<String> for TimelineEventType
source§impl Hash for TimelineEventType
impl Hash for TimelineEventType
source§impl Ord for TimelineEventType
impl Ord for TimelineEventType
source§fn cmp(&self, other: &TimelineEventType) -> Ordering
fn cmp(&self, other: &TimelineEventType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for TimelineEventType
impl PartialEq for TimelineEventType
source§impl PartialOrd for TimelineEventType
impl PartialOrd for TimelineEventType
source§impl Serialize for TimelineEventType
impl Serialize for TimelineEventType
impl Eq for TimelineEventType
impl StructuralPartialEq for TimelineEventType
Auto Trait Implementations§
impl Freeze for TimelineEventType
impl RefUnwindSafe for TimelineEventType
impl Send for TimelineEventType
impl Sync for TimelineEventType
impl Unpin for TimelineEventType
impl UnwindSafe for TimelineEventType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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
key
and return true
if they are equal.