pub struct RoomOrAliasId(/* private fields */);
Expand description

A Matrix room ID or a Matrix room alias ID.

RoomOrAliasId 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!(<&RoomOrAliasId>::try_from("#ruma:example.com").unwrap(), "#ruma:example.com");

assert_eq!(
    <&RoomOrAliasId>::try_from("!n8f893n9:example.com").unwrap(),
    "!n8f893n9:example.com"
);

Implementations§

§

impl RoomOrAliasId

pub fn as_str(&self) -> &str

Creates a string slice from this RoomOrAliasId.

pub fn as_bytes(&self) -> &[u8]

Creates a byte slice from this RoomOrAliasId.

§

impl RoomOrAliasId

pub fn parse(s: impl AsRef<str>) -> Result<OwnedRoomOrAliasId, Error>

Try parsing a &str into an OwnedRoomOrAliasId.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

pub fn parse_box( s: impl AsRef<str> + Into<Box<str>> ) -> Result<Box<RoomOrAliasId>, Error>

Try parsing a &str into a Box<RoomOrAliasId>.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

pub fn parse_rc( s: impl AsRef<str> + Into<Rc<str>> ) -> Result<Rc<RoomOrAliasId>, Error>

Try parsing a &str into an Rc<RoomOrAliasId>.

pub fn parse_arc( s: impl AsRef<str> + Into<Arc<str>> ) -> Result<Arc<RoomOrAliasId>, Error>

Try parsing a &str into an Arc<RoomOrAliasId>.

§

impl RoomOrAliasId

pub fn server_name(&self) -> Option<&ServerName>

Returns the server name of the room (alias) ID.

pub fn is_room_id(&self) -> bool

Whether this is a room id (starts with '!')

pub fn is_room_alias_id(&self) -> bool

Whether this is a room alias id (starts with '#')

Trait Implementations§

§

impl AsRef<[u8]> for Box<RoomOrAliasId>

§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<[u8]> for RoomOrAliasId

§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<RoomOrAliasId> for OwnedRoomOrAliasId

§

fn as_ref(&self) -> &RoomOrAliasId

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<RoomOrAliasId> for RoomOrAliasId

§

fn as_ref(&self) -> &RoomOrAliasId

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<str> for Box<RoomOrAliasId>

§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
§

impl AsRef<str> for RoomOrAliasId

§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
§

impl Borrow<RoomOrAliasId> for OwnedRoomOrAliasId

§

fn borrow(&self) -> &RoomOrAliasId

Immutably borrows from an owned value. Read more
§

impl Clone for Box<RoomOrAliasId>

§

fn clone(&self) -> Box<RoomOrAliasId>

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
§

impl Debug for RoomOrAliasId

§

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

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Box<RoomOrAliasId>

§

fn deserialize<D>( deserializer: D ) -> Result<Box<RoomOrAliasId>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for RoomOrAliasId

§

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

Formats the value using the given formatter. Read more
§

impl<'a> From<&'a RoomAliasId> for &'a RoomOrAliasId

§

fn from(room_alias_id: &'a RoomAliasId) -> &'a RoomOrAliasId

Converts to this type from the input type.
§

impl<'a> From<&'a RoomId> for &'a RoomOrAliasId

§

fn from(room_id: &'a RoomId) -> &'a RoomOrAliasId

Converts to this type from the input type.
§

impl From<&RoomOrAliasId> for Arc<RoomOrAliasId>

§

fn from(s: &RoomOrAliasId) -> Arc<RoomOrAliasId>

Converts to this type from the input type.
§

impl From<&RoomOrAliasId> for Box<RoomOrAliasId>

§

fn from(id: &RoomOrAliasId) -> Box<RoomOrAliasId>

Converts to this type from the input type.
§

impl From<&RoomOrAliasId> for OwnedRoomOrAliasId

§

fn from(id: &RoomOrAliasId) -> OwnedRoomOrAliasId

Converts to this type from the input type.
§

impl From<&RoomOrAliasId> for Rc<RoomOrAliasId>

§

fn from(s: &RoomOrAliasId) -> Rc<RoomOrAliasId>

Converts to this type from the input type.
§

impl From<&RoomOrAliasId> for String

§

fn from(id: &RoomOrAliasId) -> String

Converts to this type from the input type.
§

impl From<OwnedRoomOrAliasId> for Box<RoomOrAliasId>

§

fn from(a: OwnedRoomOrAliasId) -> Box<RoomOrAliasId>

Converts to this type from the input type.
§

impl FromStr for Box<RoomOrAliasId>

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str( s: &str ) -> Result<Box<RoomOrAliasId>, <Box<RoomOrAliasId> as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for RoomOrAliasId

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
§

impl Ord for RoomOrAliasId

§

fn cmp(&self, other: &RoomOrAliasId) -> Ordering

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

impl PartialEq<&RoomOrAliasId> for Box<RoomOrAliasId>

§

fn eq(&self, other: &&RoomOrAliasId) -> 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.
§

impl PartialEq<&RoomOrAliasId> for OwnedRoomOrAliasId

§

fn eq(&self, other: &&RoomOrAliasId) -> 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.
§

impl PartialEq<&str> for Box<RoomOrAliasId>

§

fn eq(&self, other: &&str) -> 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.
§

impl PartialEq<&str> for RoomOrAliasId

§

fn eq(&self, other: &&str) -> 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.
§

impl PartialEq<Box<RoomOrAliasId>> for &RoomOrAliasId

§

fn eq(&self, other: &Box<RoomOrAliasId>) -> 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.
§

impl PartialEq<Box<RoomOrAliasId>> for RoomOrAliasId

§

fn eq(&self, other: &Box<RoomOrAliasId>) -> 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.
§

impl PartialEq<OwnedRoomOrAliasId> for &RoomOrAliasId

§

fn eq(&self, other: &OwnedRoomOrAliasId) -> 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.
§

impl PartialEq<OwnedRoomOrAliasId> for Box<RoomOrAliasId>

§

fn eq(&self, other: &OwnedRoomOrAliasId) -> 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.
§

impl PartialEq<OwnedRoomOrAliasId> for RoomOrAliasId

§

fn eq(&self, other: &OwnedRoomOrAliasId) -> 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.
§

impl PartialEq<RoomOrAliasId> for &str

§

fn eq(&self, other: &RoomOrAliasId) -> 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.
§

impl PartialEq<RoomOrAliasId> for Box<RoomOrAliasId>

§

fn eq(&self, other: &RoomOrAliasId) -> 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.
§

impl PartialEq<RoomOrAliasId> for OwnedRoomOrAliasId

§

fn eq(&self, other: &RoomOrAliasId) -> 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.
§

impl PartialEq<RoomOrAliasId> for str

§

fn eq(&self, other: &RoomOrAliasId) -> 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.
§

impl PartialEq<String> for Box<RoomOrAliasId>

§

fn eq(&self, other: &String) -> 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.
§

impl PartialEq<String> for RoomOrAliasId

§

fn eq(&self, other: &String) -> 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.
§

impl PartialEq<str> for Box<RoomOrAliasId>

§

fn eq(&self, other: &str) -> 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.
§

impl PartialEq<str> for RoomOrAliasId

§

fn eq(&self, other: &str) -> 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.
§

impl PartialEq for RoomOrAliasId

§

fn eq(&self, other: &RoomOrAliasId) -> 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.
§

impl PartialOrd for RoomOrAliasId

§

fn partial_cmp(&self, other: &RoomOrAliasId) -> Option<Ordering>

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

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

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

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

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

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

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

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

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

impl Serialize for RoomOrAliasId

§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl ToOwned for RoomOrAliasId

§

type Owned = OwnedRoomOrAliasId

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> <RoomOrAliasId as ToOwned>::Owned

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

fn clone_into(&self, target: &mut Self::Owned)

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

impl<'a> TryFrom<&'a RoomOrAliasId> for &'a RoomAliasId

§

type Error = &'a RoomId

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

fn try_from(id: &'a RoomOrAliasId) -> Result<&'a RoomAliasId, &'a RoomId>

Performs the conversion.
§

impl<'a> TryFrom<&'a RoomOrAliasId> for &'a RoomId

§

type Error = &'a RoomAliasId

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

fn try_from(id: &'a RoomOrAliasId) -> Result<&'a RoomId, &'a RoomAliasId>

Performs the conversion.
§

impl<'a> TryFrom<&'a str> for &'a RoomOrAliasId

§

type Error = Error

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

fn try_from( s: &'a str ) -> Result<&'a RoomOrAliasId, <&'a RoomOrAliasId as TryFrom<&'a str>>::Error>

Performs the conversion.
§

impl TryFrom<&str> for Box<RoomOrAliasId>

§

type Error = Error

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

fn try_from( s: &str ) -> Result<Box<RoomOrAliasId>, <Box<RoomOrAliasId> as TryFrom<&str>>::Error>

Performs the conversion.
§

impl TryFrom<String> for Box<RoomOrAliasId>

§

type Error = Error

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

fn try_from( s: String ) -> Result<Box<RoomOrAliasId>, <Box<RoomOrAliasId> as TryFrom<String>>::Error>

Performs the conversion.
§

impl Eq for RoomOrAliasId

§

impl StructuralPartialEq for RoomOrAliasId

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Q
where 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 Q
where 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

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

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

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

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

impl<T> Identity for T
where 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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more