logo
pub enum RoomEventType {
Show 52 variants Audio, CallAnswer, CallInvite, CallHangup, CallCandidates, CallNegotiate, CallReject, CallSelectAnswer, Emote, File, Image, KeyVerificationReady, KeyVerificationStart, KeyVerificationCancel, KeyVerificationAccept, KeyVerificationKey, KeyVerificationMac, KeyVerificationDone, Location, Message, Notice, PollStart, PollResponse, PollEnd, Reaction, RoomEncrypted, RoomMessage, RoomRedaction, Sticker, Video, Voice, PolicyRuleRoom, PolicyRuleServer, PolicyRuleUser, RoomAliases, RoomAvatar, RoomCanonicalAlias, RoomCreate, RoomEncryption, RoomGuestAccess, RoomHistoryVisibility, RoomJoinRules, RoomMember, RoomName, RoomPinnedEvents, RoomPowerLevels, RoomServerAcl, RoomThirdPartyInvite, RoomTombstone, RoomTopic, SpaceChild, SpaceParent, // some variants omitted
}
Available on crate feature events only.
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

Audio

Available on crate feature unstable-msc3246 only.

m.audio

CallAnswer

m.call.answer

CallInvite

m.call.invite

CallHangup

m.call.hangup

CallCandidates

m.call.candidates

CallNegotiate

Available on crate feature unstable-msc2746 only.

m.call.negotiate

CallReject

Available on crate feature unstable-msc2746 only.

m.call.reject

CallSelectAnswer

Available on crate feature unstable-msc2746 only.

m.call.select_answer

Emote

Available on crate feature unstable-msc1767 only.

m.emote

File

Available on crate feature unstable-msc3551 only.

m.file

Image

Available on crate feature unstable-msc3552 only.

m.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

Available on crate feature unstable-msc3488 only.

m.location

Message

Available on crate feature unstable-msc1767 only.

m.message

Notice

Available on crate feature unstable-msc1767 only.

m.notice

PollStart

Available on crate feature unstable-msc3381 only.

org.matrix.msc3381.poll.start

PollResponse

Available on crate feature unstable-msc3381 only.

org.matrix.msc3381.poll.response

PollEnd

Available on crate feature unstable-msc3381 only.

org.matrix.msc3381.poll.end

Reaction

Available on crate feature unstable-msc2677 only.

m.reaction

RoomEncrypted

m.room.encrypted

RoomMessage

m.room.message

RoomRedaction

m.room.redaction

Sticker

m.sticker

Video

Available on crate feature unstable-msc3553 only.

m.video

Voice

Available on crate feature unstable-msc3245 only.

m.voice

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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
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
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.

Should always be Self
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
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