#[non_exhaustive]
pub enum MatrixId { Room(OwnedRoomId), RoomAlias(OwnedRoomAliasId), User(OwnedUserId), Event(OwnedRoomOrAliasId, OwnedEventId), }
Expand description

All Matrix Identifiers that can be represented as a Matrix URI.

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

Room(OwnedRoomId)

A room ID.

§

RoomAlias(OwnedRoomAliasId)

A room alias.

§

User(OwnedUserId)

A user ID.

§

Event(OwnedRoomOrAliasId, OwnedEventId)

An event ID.

Trait Implementations§

source§

impl Clone for MatrixId

source§

fn clone(&self) -> MatrixId

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MatrixId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&RoomAliasId> for MatrixId

source§

fn from(room_alias: &RoomAliasId) -> Self

Converts to this type from the input type.
source§

impl From<&RoomId> for MatrixId

source§

fn from(room_id: &RoomId) -> Self

Converts to this type from the input type.
source§

impl From<&UserId> for MatrixId

source§

fn from(user_id: &UserId) -> Self

Converts to this type from the input type.
source§

impl From<(&RoomAliasId, &EventId)> for MatrixId

source§

fn from(ids: (&RoomAliasId, &EventId)) -> Self

Converts to this type from the input type.
source§

impl From<(&RoomId, &EventId)> for MatrixId

source§

fn from(ids: (&RoomId, &EventId)) -> Self

Converts to this type from the input type.
source§

impl From<(&RoomOrAliasId, &EventId)> for MatrixId

source§

fn from(ids: (&RoomOrAliasId, &EventId)) -> Self

Converts to this type from the input type.
source§

impl From<(OwnedRoomAliasId, OwnedEventId)> for MatrixId

source§

fn from(ids: (OwnedRoomAliasId, OwnedEventId)) -> Self

Converts to this type from the input type.
source§

impl From<(OwnedRoomId, OwnedEventId)> for MatrixId

source§

fn from(ids: (OwnedRoomId, OwnedEventId)) -> Self

Converts to this type from the input type.
source§

impl From<(OwnedRoomOrAliasId, OwnedEventId)> for MatrixId

source§

fn from(ids: (OwnedRoomOrAliasId, OwnedEventId)) -> Self

Converts to this type from the input type.
source§

impl From<OwnedRoomAliasId> for MatrixId

source§

fn from(room_alias: OwnedRoomAliasId) -> Self

Converts to this type from the input type.
source§

impl From<OwnedRoomId> for MatrixId

source§

fn from(room_id: OwnedRoomId) -> Self

Converts to this type from the input type.
source§

impl From<OwnedUserId> for MatrixId

source§

fn from(user_id: OwnedUserId) -> Self

Converts to this type from the input type.
source§

impl PartialEq for MatrixId

source§

fn eq(&self, other: &MatrixId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for MatrixId

source§

impl StructuralEq for MatrixId

source§

impl StructuralPartialEq for MatrixId

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, W> HasTypeWitness<W> for Twhere W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

impl<T> Identity for Twhere T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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