[][src]Enum ruma_identifiers::RoomIdOrAliasId

pub enum RoomIdOrAliasId {
    RoomAliasId(RoomAliasId),
    RoomId(RoomId),
}

A Matrix room ID or a Matrix room alias ID.

RoomIdOrAliasId is useful for APIs that accept either kind of room identifier. It is converted from a string slice, and can be converted back into a string as needed. When converted from a string slice, the variant is determined by the leading sigil character.

assert_eq!(
    RoomIdOrAliasId::try_from("#ruma:example.com").unwrap().to_string(),
    "#ruma:example.com"
);

assert_eq!(
    RoomIdOrAliasId::try_from("!n8f893n9:example.com").unwrap().to_string(),
    "!n8f893n9:example.com"
);

Variants

RoomAliasId(RoomAliasId)

A Matrix room alias ID.

RoomId(RoomId)

A Matrix room ID.

Trait Implementations

impl Eq for RoomIdOrAliasId[src]

impl Clone for RoomIdOrAliasId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<RoomIdOrAliasId> for RoomIdOrAliasId[src]

impl Hash for RoomIdOrAliasId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

impl Debug for RoomIdOrAliasId[src]

impl Display for RoomIdOrAliasId[src]

impl<'a> TryFrom<&'a str> for RoomIdOrAliasId[src]

type Error = Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

fn try_from(room_id_or_alias_id: &'a str) -> Result<Self, Error>[src]

🔬 This is a nightly-only experimental API. (try_from)

Attempts to create a new Matrix room ID or a room alias ID from a string representation.

The string must either include the leading ! sigil, the opaque ID, a literal colon, and a valid server name or include the leading # sigil, the alias, a literal colon, and a valid server name.

impl Serialize for RoomIdOrAliasId[src]

impl<'de> Deserialize<'de> for RoomIdOrAliasId[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]