Struct ruma_identifiers::RoomId [] [src]

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]

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

Fails if the given origin server name cannot be parsed as a valid host.

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.

Returns the event's opaque ID.

Returns the port the originating homeserver can be accessed on.

Trait Implementations

impl Clone for RoomId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RoomId
[src]

Formats the value using the given formatter.

impl Eq for RoomId
[src]

impl Hash for RoomId
[src]

Feeds this value into the given [Hasher]. Read more

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

impl PartialEq for RoomId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for RoomId
[src]

Formats the value using the given formatter. Read more

impl Serialize for RoomId
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

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

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