Struct ruma::RoomId

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

A Matrix room ID.

A RoomId is generated randomly or converted from a string slice, and can be converted back into a string as needed.

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

Implementations§

source§

impl RoomId

source

pub fn as_str(&self) -> &str

Available on crate feature events only.

Creates a string slice from this RoomId.

source

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

Available on crate feature events only.

Creates a byte slice from this RoomId.

source§

impl RoomId

source

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

Available on crate feature events only.

Try parsing a &str into an OwnedRoomId.

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

Available on crate feature events only.

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

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

Available on crate feature events only.

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

source

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

Available on crate feature events only.

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

source§

impl RoomId

source

pub fn new(server_name: &ServerName) -> OwnedRoomId

Available on crate features events and rand only.

Attempts to generate a RoomId for the given origin server with a localpart consisting of 18 random ASCII characters.

Fails if the given homeserver cannot be parsed as a valid host.

source

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

Available on crate feature events only.

Returns the server name of the room ID.

source

pub fn matrix_to_uri(&self) -> MatrixToUri

Available on crate feature events only.

Create a matrix.to URI for this room ID.

Note that it is recommended to provide servers that should know the room to be able to find it with its room ID. For that use RoomId::matrix_to_uri_via().

Example
use ruma_common::{room_id, server_name};

assert_eq!(
    room_id!("!somewhere:example.org").matrix_to_uri().to_string(),
    "https://matrix.to/#/!somewhere:example.org"
);
source

pub fn matrix_to_uri_via<T>(&self, via: T) -> MatrixToUriwhere T: IntoIterator, <T as IntoIterator>::Item: Into<OwnedServerName>,

Available on crate feature events only.

Create a matrix.to URI for this room ID with a list of servers that should know it.

To get the list of servers, it is recommended to use the routing algorithm from the spec.

If you don’t have a list of servers, you can use RoomId::matrix_to_uri() instead.

Example
use ruma_common::{room_id, server_name};

assert_eq!(
    room_id!("!somewhere:example.org")
        .matrix_to_uri_via([&*server_name!("example.org"), &*server_name!("alt.example.org")])
        .to_string(),
    "https://matrix.to/#/!somewhere:example.org?via=example.org&via=alt.example.org"
);
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 ID.

Note that it is recommended to provide servers that should know the room to be able to find it with its room ID. For that use RoomId::matrix_to_event_uri_via().

source

pub fn matrix_to_event_uri_via<T>( &self, ev_id: impl Into<OwnedEventId>, via: T ) -> MatrixToUriwhere T: IntoIterator, <T as IntoIterator>::Item: Into<OwnedServerName>,

Available on crate feature events only.

Create a matrix.to URI for an event scoped under this room ID with a list of servers that should know it.

To get the list of servers, it is recommended to use the routing algorithm from the spec.

If you don’t have a list of servers, you can use RoomId::matrix_to_event_uri() instead.

source

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

Available on crate feature events only.

Create a matrix: URI for this room ID.

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

Note that it is recommended to provide servers that should know the room to be able to find it with its room ID. For that use RoomId::matrix_uri_via().

Example
use ruma_common::{room_id, server_name};

assert_eq!(
    room_id!("!somewhere:example.org").matrix_uri(false).to_string(),
    "matrix:roomid/somewhere:example.org"
);
source

pub fn matrix_uri_via<T>(&self, via: T, join: bool) -> MatrixUriwhere T: IntoIterator, <T as IntoIterator>::Item: Into<OwnedServerName>,

Available on crate feature events only.

Create a matrix: URI for this room ID with a list of servers that should know it.

To get the list of servers, it is recommended to use the routing algorithm from the spec.

If you don’t have a list of servers, you can use RoomId::matrix_uri() instead.

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

Example
use ruma_common::{room_id, server_name};

assert_eq!(
    room_id!("!somewhere:example.org")
        .matrix_uri_via(
            [&*server_name!("example.org"), &*server_name!("alt.example.org")],
            true
        )
        .to_string(),
    "matrix:roomid/somewhere:example.org?via=example.org&via=alt.example.org&action=join"
);
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 ID.

Note that it is recommended to provide servers that should know the room to be able to find it with its room ID. For that use RoomId::matrix_event_uri_via().

source

pub fn matrix_event_uri_via<T>( &self, ev_id: impl Into<OwnedEventId>, via: T ) -> MatrixUriwhere T: IntoIterator, <T as IntoIterator>::Item: Into<OwnedServerName>,

Available on crate feature events only.

Create a matrix: URI for an event scoped under this room ID with a list of servers that should know it.

To get the list of servers, it is recommended to use the routing algorithm from the spec.

If you don’t have a list of servers, you can use RoomId::matrix_event_uri() instead.

Trait Implementations§

source§

impl AsRef<[u8]> for RoomId

source§

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

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

impl AsRef<RoomId> for OwnedRoomId

source§

fn as_ref(&self) -> &RoomId

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

impl AsRef<RoomId> for RoomId

source§

fn as_ref(&self) -> &RoomId

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

impl AsRef<str> for RoomId

source§

fn as_ref(&self) -> &str

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

impl Borrow<RoomId> for OwnedRoomId

source§

fn borrow(&self) -> &RoomId

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<RoomId>

source§

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

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 RoomId

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<RoomId>

source§

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

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

impl Display for RoomId

source§

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

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

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

source§

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

Converts to this type from the input type.
source§

impl From<&RoomId> for Arc<RoomId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomId> for Box<RoomId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomId> for MatrixId

source§

fn from(room_id: &RoomId) -> MatrixId

Converts to this type from the input type.
source§

impl From<&RoomId> for OwnedRoomId

source§

fn from(id: &RoomId) -> OwnedRoomId

Converts to this type from the input type.
source§

impl From<&RoomId> for Rc<RoomId>

source§

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

Converts to this type from the input type.
source§

impl From<&RoomId> for String

source§

fn from(id: &RoomId) -> String

Converts to this type from the input type.
source§

impl From<OwnedRoomId> for Box<RoomId>

source§

fn from(a: OwnedRoomId) -> Box<RoomId>

Converts to this type from the input type.
source§

impl Hash for RoomId

source§

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

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

impl Ord for RoomId

source§

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

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

impl PartialEq<&RoomId> for OwnedRoomId

source§

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

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<RoomId>> for &RoomId

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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 RoomId

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 RoomId

source§

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

source§

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

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 RoomId

§

type Owned = OwnedRoomId

The resulting type after obtaining ownership.
source§

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

§

type Error = &'a RoomAliasId

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

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

Performs the conversion.
source§

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

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<&str> for Box<RoomId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<String> for Box<RoomId>

§

type Error = Error

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

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

Performs the conversion.
source§

impl Eq for RoomId

source§

impl StructuralEq for RoomId

source§

impl StructuralPartialEq for RoomId

Auto Trait Implementations§

§

impl RefUnwindSafe for RoomId

§

impl Send for RoomId

§

impl !Sized for RoomId

§

impl Sync for RoomId

§

impl Unpin for RoomId

§

impl UnwindSafe for RoomId

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

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

§

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

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

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

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

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

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more