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
impl RoomAliasId
source§impl RoomAliasId
impl RoomAliasId
sourcepub fn parse(s: impl AsRef<str>) -> Result<OwnedRoomAliasId, Error>
Available on crate feature events
only.
pub fn parse(s: impl AsRef<str>) -> Result<OwnedRoomAliasId, Error>
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.
sourcepub fn parse_box(
s: impl AsRef<str> + Into<Box<str>>,
) -> Result<Box<RoomAliasId>, Error>
Available on crate feature events
only.
pub fn parse_box( s: impl AsRef<str> + Into<Box<str>>, ) -> Result<Box<RoomAliasId>, Error>
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§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
source§impl AsRef<RoomAliasId> for RoomAliasId
impl AsRef<RoomAliasId> for RoomAliasId
source§fn as_ref(&self) -> &RoomAliasId
fn as_ref(&self) -> &RoomAliasId
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
source§impl Clone for Box<RoomAliasId>
impl Clone for Box<RoomAliasId>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RoomAliasId
impl Debug for RoomAliasId
source§impl<'de> Deserialize<'de> for Box<RoomAliasId>
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>,
fn deserialize<D>(
deserializer: D,
) -> Result<Box<RoomAliasId>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
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
source§impl From<&RoomAliasId> for Arc<RoomAliasId>
impl From<&RoomAliasId> for Arc<RoomAliasId>
source§fn from(s: &RoomAliasId) -> Arc<RoomAliasId>
fn from(s: &RoomAliasId) -> Arc<RoomAliasId>
source§impl From<&RoomAliasId> for Box<RoomAliasId>
impl From<&RoomAliasId> for Box<RoomAliasId>
source§fn from(id: &RoomAliasId) -> Box<RoomAliasId>
fn from(id: &RoomAliasId) -> Box<RoomAliasId>
source§impl From<&RoomAliasId> for MatrixId
impl From<&RoomAliasId> for MatrixId
source§fn from(room_alias: &RoomAliasId) -> MatrixId
fn from(room_alias: &RoomAliasId) -> MatrixId
source§impl From<&RoomAliasId> for OwnedRoomAliasId
impl From<&RoomAliasId> for OwnedRoomAliasId
source§fn from(id: &RoomAliasId) -> OwnedRoomAliasId
fn from(id: &RoomAliasId) -> OwnedRoomAliasId
source§impl From<&RoomAliasId> for Rc<RoomAliasId>
impl From<&RoomAliasId> for Rc<RoomAliasId>
source§fn from(s: &RoomAliasId) -> Rc<RoomAliasId>
fn from(s: &RoomAliasId) -> Rc<RoomAliasId>
source§impl From<&RoomAliasId> for String
impl From<&RoomAliasId> for String
source§fn from(id: &RoomAliasId) -> String
fn from(id: &RoomAliasId) -> String
source§impl From<OwnedRoomAliasId> for Box<RoomAliasId>
impl From<OwnedRoomAliasId> for Box<RoomAliasId>
source§fn from(a: OwnedRoomAliasId) -> Box<RoomAliasId>
fn from(a: OwnedRoomAliasId) -> Box<RoomAliasId>
source§impl FromStr for Box<RoomAliasId>
impl FromStr for Box<RoomAliasId>
source§impl Hash for RoomAliasId
impl Hash for RoomAliasId
source§impl Ord for RoomAliasId
impl Ord for RoomAliasId
source§impl PartialEq<&RoomAliasId> for Box<RoomAliasId>
impl PartialEq<&RoomAliasId> for Box<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<Box<RoomAliasId>> for &RoomAliasId
impl PartialEq<Box<RoomAliasId>> for &RoomAliasId
source§impl PartialEq<Box<RoomAliasId>> for RoomAliasId
impl PartialEq<Box<RoomAliasId>> for RoomAliasId
source§impl PartialEq<OwnedRoomAliasId> for &RoomAliasId
impl PartialEq<OwnedRoomAliasId> for &RoomAliasId
source§impl PartialEq<OwnedRoomAliasId> for Box<RoomAliasId>
impl PartialEq<OwnedRoomAliasId> for Box<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 Box<RoomAliasId>
impl PartialEq<RoomAliasId> for Box<RoomAliasId>
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,
source§impl ToOwned for RoomAliasId
impl ToOwned for RoomAliasId
source§type Owned = OwnedRoomAliasId
type Owned = OwnedRoomAliasId
source§fn to_owned(&self) -> <RoomAliasId as ToOwned>::Owned
fn to_owned(&self) -> <RoomAliasId as ToOwned>::Owned
1.63.0 · source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
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
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
key
and return true
if they are equal.