Struct ruma_identifiers::RoomAliasId [] [src]

pub struct RoomAliasId {
    // some fields omitted
}

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

Methods

impl RoomAliasId
[src]

fn hostname(&self) -> &Host

Returns a Host for the room alias 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.

fn alias(&self) -> &str

Returns the room's alias.

fn port(&self) -> u16

Returns the port the originating homeserver can be accessed on.

Trait Implementations

impl PartialEq for RoomAliasId
[src]

fn eq(&self, __arg_0: &RoomAliasId) -> bool

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

fn ne(&self, __arg_0: &RoomAliasId) -> bool

This method tests for !=.

impl Hash for RoomAliasId
[src]

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

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.

impl Eq for RoomAliasId
[src]

impl Debug for RoomAliasId
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for RoomAliasId
[src]

fn fmt(&self, f: &mut Formatter) -> FmtResult

Formats the value using the given formatter.

impl Serialize for RoomAliasId
[src]

fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer

Serializes this value into this serializer.

impl Deserialize for RoomAliasId
[src]

fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error> where D: Deserializer

Deserialize this value given this Deserializer.

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

type Err = Error

Unstable (try_from)

The type returned in the event of a conversion error.

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

Unstable (try_from)

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

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