[][src]Struct ruma_identifiers::RoomId

pub struct RoomId { /* fields omitted */ }

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().to_string(),
    "!n8f893n9:example.com"
);

Methods

impl RoomId[src]

pub fn new(homeserver_host: &str) -> Result<Self, Error>[src]

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.

pub fn hostname(&self) -> &Host[src]

Returns a Host for the room ID, containing the server name (minus the port) of the originating homeserver.

The host can be either a domain name, an IPv4 address, or an IPv6 address.

pub fn localpart(&self) -> &str[src]

Returns the rooms's unique ID.

pub fn port(&self) -> u16[src]

Returns the port the originating homeserver can be accessed on.

Trait Implementations

impl Clone for RoomId[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<RoomId> for RoomId[src]

impl Eq for RoomId[src]

impl Debug for RoomId[src]

impl Display for RoomId[src]

impl Hash for RoomId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'a> TryFrom<&'a str> for RoomId[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(room_id: &'a str) -> Result<Self, Error>[src]

Attempts to create a new Matrix room ID from a string representation.

The string must include the leading ! sigil, the localpart, a literal colon, and a valid server name.

impl Serialize for RoomId[src]

impl<'de> Deserialize<'de> for RoomId[src]

Auto Trait Implementations

impl Unpin for RoomId

impl Sync for RoomId

impl Send for RoomId

impl UnwindSafe for RoomId

impl RefUnwindSafe for RoomId

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]