RoomAliasId

Struct 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 parse(s: impl AsRef<str> + Into<Box<str>>) -> Result<Box<Self>, Error>

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<Self>, Error>

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

Source

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

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

Source§

impl RoomAliasId

Source

pub fn as_str(&self) -> &str

Creates a string slice from this RoomAliasId.

Source

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

Creates a byte slice from this RoomAliasId.

Source§

impl RoomAliasId

Source

pub fn alias(&self) -> &str

Returns the room’s alias.

Source

pub fn server_name(&self) -> &ServerName

Returns the server name of the room alias ID.

Source

pub fn matrix_to_uri(&self) -> MatrixToUri

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

Source

pub fn matrix_to_event_uri(&self, ev_id: &EventId) -> MatrixToUri

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

Source

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

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: &EventId) -> MatrixUri

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

Trait Implementations§

Source§

impl AsRef<str> for Box<RoomAliasId>

Source§

fn as_ref(&self) -> &str

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 Clone for Box<RoomAliasId>

Source§

fn clone(&self) -> Self

Returns a duplicate 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

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

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

Available on crate feature serde only.
Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::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

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) -> Self

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) -> Self

Converts to this type from the input type.
Source§

impl From<&RoomAliasId> for MatrixId

Source§

fn from(room_alias: &RoomAliasId) -> Self

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 FromStr for Box<RoomAliasId>

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

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

impl Hash for RoomAliasId

Source§

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

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 Box<RoomAliasId>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<&str> for Box<RoomAliasId>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomAliasId> for Box<RoomAliasId>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomAliasId> for String

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<String> for Box<RoomAliasId>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<str> for Box<RoomAliasId>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

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

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

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

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

impl Serialize for RoomAliasId

Available on crate feature serde only.
Source§

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

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

impl ToOwned for RoomAliasId

Source§

type Owned = Box<RoomAliasId>

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> Self::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

Source§

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

Source§

type Error = Error

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

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

Performs the conversion.
Source§

impl TryFrom<&str> for Box<RoomAliasId>

Source§

type Error = Error

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

fn try_from(s: &str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Box<RoomOrAliasId>> for Box<RoomAliasId>

Source§

type Error = Box<RoomId>

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

fn try_from(id: Box<RoomOrAliasId>) -> Result<Box<RoomAliasId>, Box<RoomId>>

Performs the conversion.
Source§

impl TryFrom<String> for Box<RoomAliasId>

Source§

type Error = Error

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

fn try_from(s: String) -> Result<Self, Self::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<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more