Struct ruma::RoomAliasId

source ·
pub struct RoomAliasId(/* private fields */);
Expand description

A Matrix room alias ID.

A RoomAliasId is converted from a string slice, and can be converted back into a string as needed.

assert_eq!(<&RoomAliasId>::try_from("#ruma:example.com").unwrap(), "#ruma:example.com");

Implementations§

source§

impl RoomAliasId

source

pub fn as_str(&self) -> &str

Available on crate feature events only.

Creates a string slice from this RoomAliasId.

source

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

Available on crate feature events only.

Creates a byte slice from this RoomAliasId.

source§

impl RoomAliasId

source

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

Available on crate feature events only.

Try parsing a &str into an OwnedRoomAliasId.

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

source

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

Available on crate feature events only.

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

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

source

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

Available on crate feature events only.

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

source

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

Available on crate feature events only.

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

source§

impl RoomAliasId

source

pub fn alias(&self) -> &str

Available on crate feature events only.

Returns the room’s alias.

source

pub fn server_name(&self) -> &ServerName

Available on crate feature events only.

Returns the server name of the room alias ID.

source

pub fn matrix_to_uri(&self) -> MatrixToUri

Available on crate feature events only.

Create a matrix.to URI for this room alias ID.

source

pub fn matrix_to_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixToUri

Available on crate feature events only.

Create a matrix.to URI for an event scoped under this room alias ID.

source

pub fn matrix_uri(&self, join: bool) -> MatrixUri

Available on crate feature events only.

Create a matrix: URI for this room alias ID.

If join is true, a click on the URI should join the room.

source

pub fn matrix_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixUri

Available on crate feature events only.

Create a matrix: URI for an event scoped under this room alias ID.

Trait Implementations§

source§

impl AsRef<[u8]> for RoomAliasId

source§

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

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

impl AsRef<RoomAliasId> for OwnedRoomAliasId

source§

fn as_ref(&self) -> &RoomAliasId

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

impl AsRef<RoomAliasId> for RoomAliasId

source§

fn as_ref(&self) -> &RoomAliasId

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

impl AsRef<str> for RoomAliasId

source§

fn as_ref(&self) -> &str

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

impl Borrow<RoomAliasId> for OwnedRoomAliasId

source§

fn borrow(&self) -> &RoomAliasId

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<RoomAliasId>

source§

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

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 RoomAliasId

source§

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

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

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

source§

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

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

impl Display for RoomAliasId

source§

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

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

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

source§

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

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for Arc<RoomAliasId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for Box<RoomAliasId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for MatrixId

source§

fn from(room_alias: &RoomAliasId) -> MatrixId

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for OwnedRoomAliasId

source§

fn from(id: &RoomAliasId) -> OwnedRoomAliasId

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for Rc<RoomAliasId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomAliasId> for String

source§

fn from(id: &RoomAliasId) -> String

Converts to this type from the input type.
source§

impl From<OwnedRoomAliasId> for Box<RoomAliasId>

source§

fn from(a: OwnedRoomAliasId) -> Box<RoomAliasId>

Converts to this type from the input type.
source§

impl Hash for RoomAliasId

source§

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

Feeds this value into the given Hasher. Read more
source§

impl Ord for RoomAliasId

source§

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

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

impl PartialEq<&RoomAliasId> for OwnedRoomAliasId

source§

fn eq(&self, other: &&RoomAliasId) -> 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 PartialEq<&str> for RoomAliasId

source§

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

impl PartialEq<Box<RoomAliasId>> for &RoomAliasId

source§

fn eq(&self, other: &Box<RoomAliasId>) -> 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 PartialEq<Box<RoomAliasId>> for RoomAliasId

source§

fn eq(&self, other: &Box<RoomAliasId>) -> 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 PartialEq<OwnedRoomAliasId> for &RoomAliasId

source§

fn eq(&self, other: &OwnedRoomAliasId) -> 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 PartialEq<OwnedRoomAliasId> for RoomAliasId

source§

fn eq(&self, other: &OwnedRoomAliasId) -> 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 PartialEq<RoomAliasId> for &str

source§

fn eq(&self, other: &RoomAliasId) -> 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 PartialEq<RoomAliasId> for OwnedRoomAliasId

source§

fn eq(&self, other: &RoomAliasId) -> 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 PartialEq<RoomAliasId> for str

source§

fn eq(&self, other: &RoomAliasId) -> 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 PartialEq<String> for RoomAliasId

source§

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

impl PartialEq<str> for RoomAliasId

source§

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

impl PartialEq for RoomAliasId

source§

fn eq(&self, other: &RoomAliasId) -> 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 PartialOrd for RoomAliasId

source§

fn partial_cmp(&self, other: &RoomAliasId) -> 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
source§

impl Serialize for RoomAliasId

source§

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

impl ToOwned for RoomAliasId

§

type Owned = OwnedRoomAliasId

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <RoomAliasId 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
source§

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

§

type Error = &'a RoomId

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

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

Performs the conversion.
source§

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

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<&str> for Box<RoomAliasId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<String> for Box<RoomAliasId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl Eq for RoomAliasId

source§

impl StructuralPartialEq for RoomAliasId

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

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

source§

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

Compare self to key and return their ordering.
source§

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

source§

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

Checks if this value is equivalent to the given key. Read more
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.
source§

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

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

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

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