logo
#[non_exhaustive]
pub enum RoomEventType {
Show 38 variants CallAnswer, CallInvite, CallHangup, CallCandidates, KeyVerificationReady, KeyVerificationStart, KeyVerificationCancel, KeyVerificationAccept, KeyVerificationKey, KeyVerificationMac, KeyVerificationDone, Reaction, RoomEncrypted, RoomMessage, RoomMessageFeedback, RoomRedaction, Sticker, PolicyRuleRoom, PolicyRuleServer, PolicyRuleUser, RoomAliases, RoomAvatar, RoomCanonicalAlias, RoomCreate, RoomEncryption, RoomGuestAccess, RoomHistoryVisibility, RoomJoinRules, RoomMember, RoomName, RoomPinnedEvents, RoomPowerLevels, RoomServerAcl, RoomThirdPartyInvite, RoomTombstone, RoomTopic, SpaceChild, SpaceParent, // some variants omitted
}
Expand description

The type of RoomEvent 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 (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

CallAnswer

m.call.answer

CallInvite

m.call.invite

CallHangup

m.call.hangup

CallCandidates

m.call.candidates

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

Reaction

m.reaction

RoomEncrypted

m.room.encrypted

RoomMessage

m.room.message

RoomMessageFeedback

m.room.message.feedback

RoomRedaction

m.room.redaction

Sticker

m.sticker

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more