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
impl RoomAliasId
Source§impl RoomAliasId
impl RoomAliasId
Source§impl RoomAliasId
impl RoomAliasId
Sourcepub fn server_name(&self) -> &ServerName
Available on crate feature events only.
pub fn server_name(&self) -> &ServerName
events only.Returns the server name of the room alias ID.
Sourcepub fn matrix_to_uri(&self) -> MatrixToUri
Available on crate feature events only.
pub fn matrix_to_uri(&self) -> MatrixToUri
events only.Create a matrix.to URI for this room alias ID.
Sourcepub fn matrix_to_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixToUri
👎Deprecated: Use RoomId::matrix_to_event_uri instead.Available on crate feature events only.
pub fn matrix_to_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixToUri
RoomId::matrix_to_event_uri instead.events only.Create a matrix.to URI for an event scoped under this room alias ID.
This is deprecated because room aliases are mutable, so the URI might break after a while.
Sourcepub fn matrix_uri(&self, join: bool) -> MatrixUri
Available on crate feature events only.
pub fn matrix_uri(&self, join: bool) -> MatrixUri
events only.Create a matrix: URI for this room alias ID.
If join is true, a click on the URI should join the room.
Sourcepub fn matrix_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixUri
👎Deprecated: Use RoomId::matrix_event_uri instead.Available on crate feature events only.
pub fn matrix_event_uri(&self, ev_id: impl Into<OwnedEventId>) -> MatrixUri
RoomId::matrix_event_uri instead.events only.Create a matrix: URI for an event scoped under this room alias ID.
This is deprecated because room aliases are mutable, so the URI might break after a while.
Trait Implementations§
Source§impl AsRef<[u8]> for RoomAliasId
impl AsRef<[u8]> for RoomAliasId
Source§impl AsRef<RoomAliasId> for OwnedRoomAliasId
impl AsRef<RoomAliasId> for OwnedRoomAliasId
Source§fn as_ref(&self) -> &RoomAliasId
fn as_ref(&self) -> &RoomAliasId
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<RoomAliasId> for RoomAliasId
impl AsRef<RoomAliasId> for RoomAliasId
Source§fn as_ref(&self) -> &RoomAliasId
fn as_ref(&self) -> &RoomAliasId
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<str> for RoomAliasId
impl AsRef<str> for RoomAliasId
Source§impl Borrow<RoomAliasId> for OwnedRoomAliasId
impl Borrow<RoomAliasId> for OwnedRoomAliasId
Source§fn borrow(&self) -> &RoomAliasId
fn borrow(&self) -> &RoomAliasId
Immutably borrows from an owned value. Read more
Source§impl Debug for RoomAliasId
impl Debug for RoomAliasId
Source§impl Display for RoomAliasId
impl Display for RoomAliasId
Source§impl<'a> From<&'a RoomAliasId> for &'a RoomOrAliasId
impl<'a> From<&'a RoomAliasId> for &'a RoomOrAliasId
Source§fn from(room_alias_id: &'a RoomAliasId) -> &'a RoomOrAliasId
fn from(room_alias_id: &'a RoomAliasId) -> &'a RoomOrAliasId
Converts to this type from the input type.
Source§impl From<&RoomAliasId> for MatrixId
impl From<&RoomAliasId> for MatrixId
Source§fn from(room_alias: &RoomAliasId) -> MatrixId
fn from(room_alias: &RoomAliasId) -> MatrixId
Converts to this type from the input type.
Source§impl From<&RoomAliasId> for OwnedRoomAliasId
impl From<&RoomAliasId> for OwnedRoomAliasId
Source§fn from(id: &RoomAliasId) -> OwnedRoomAliasId
fn from(id: &RoomAliasId) -> OwnedRoomAliasId
Converts to this type from the input type.
Source§impl From<&RoomAliasId> for String
impl From<&RoomAliasId> for String
Source§fn from(id: &RoomAliasId) -> String
fn from(id: &RoomAliasId) -> String
Converts to this type from the input type.
Source§impl Hash for RoomAliasId
impl Hash for RoomAliasId
Source§impl Ord for RoomAliasId
impl Ord for RoomAliasId
Source§impl PartialEq<&RoomAliasId> for OwnedRoomAliasId
impl PartialEq<&RoomAliasId> for OwnedRoomAliasId
Source§impl PartialEq<&str> for RoomAliasId
impl PartialEq<&str> for RoomAliasId
Source§impl PartialEq<OwnedRoomAliasId> for &RoomAliasId
impl PartialEq<OwnedRoomAliasId> for &RoomAliasId
Source§impl PartialEq<OwnedRoomAliasId> for RoomAliasId
impl PartialEq<OwnedRoomAliasId> for RoomAliasId
Source§impl PartialEq<RoomAliasId> for &str
impl PartialEq<RoomAliasId> for &str
Source§impl PartialEq<RoomAliasId> for OwnedRoomAliasId
impl PartialEq<RoomAliasId> for OwnedRoomAliasId
Source§impl PartialEq<RoomAliasId> for str
impl PartialEq<RoomAliasId> for str
Source§impl PartialEq<String> for RoomAliasId
impl PartialEq<String> for RoomAliasId
Source§impl PartialEq<str> for RoomAliasId
impl PartialEq<str> for RoomAliasId
Source§impl PartialEq for RoomAliasId
impl PartialEq for RoomAliasId
Source§impl PartialOrd for RoomAliasId
impl PartialOrd for RoomAliasId
Source§impl Serialize for RoomAliasId
impl Serialize for RoomAliasId
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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
impl ToOwned for RoomAliasId
Source§type Owned = OwnedRoomAliasId
type Owned = OwnedRoomAliasId
The resulting type after obtaining ownership.
Source§fn to_owned(&self) -> <RoomAliasId as ToOwned>::Owned
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)
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
impl<'a> TryFrom<&'a RoomOrAliasId> for &'a RoomAliasId
Source§impl<'a> TryFrom<&'a str> for &'a RoomAliasId
impl<'a> TryFrom<&'a str> for &'a RoomAliasId
impl Eq for RoomAliasId
impl StructuralPartialEq for RoomAliasId
Auto Trait Implementations§
impl Freeze for RoomAliasId
impl RefUnwindSafe for RoomAliasId
impl Send for RoomAliasId
impl !Sized for RoomAliasId
impl Sync for RoomAliasId
impl Unpin for RoomAliasId
impl UnwindSafe for RoomAliasId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.