RoomOrAliasId

Struct RoomOrAliasId 

Source
pub struct RoomOrAliasId(/* private fields */);
Expand description

A Matrix room ID or a Matrix room alias ID.

RoomOrAliasId is useful for APIs that accept either kind of room identifier. It is converted from a string slice, and can be converted back into a string as needed. When converted from a string slice, the variant is determined by the leading sigil character.

assert_eq!(<&RoomOrAliasId>::try_from("#ruma:example.com").unwrap(), "#ruma:example.com");

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

Implementations§

Source§

impl RoomOrAliasId

Source

pub fn parse(s: impl AsRef<str> + Into<Box<str>>) -> Result<Box<Self>, Error>

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

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

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

Source

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

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

Source§

impl RoomOrAliasId

Source

pub fn as_str(&self) -> &str

Creates a string slice from this RoomOrAliasId.

Source

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

Creates a byte slice from this RoomOrAliasId.

Source§

impl RoomOrAliasId

Source

pub fn localpart(&self) -> &str

Returns the local part (everything after the ! or # and before the first colon).

Source

pub fn server_name(&self) -> &ServerName

Returns the server name of the room (alias) ID.

Source

pub fn is_room_id(&self) -> bool

Whether this is a room id (starts with '!')

Source

pub fn is_room_alias_id(&self) -> bool

Whether this is a room alias id (starts with '#')

Source

pub fn into_either(self: Box<Self>) -> Either<Box<RoomId>, Box<RoomAliasId>>

Available on crate feature either only.

Turn this RoomOrAliasId into Either<RoomId, RoomAliasId>

Trait Implementations§

Source§

impl AsRef<str> for Box<RoomOrAliasId>

Source§

fn as_ref(&self) -> &str

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

impl AsRef<str> for RoomOrAliasId

Source§

fn as_ref(&self) -> &str

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

impl Clone for Box<RoomOrAliasId>

Source§

fn clone(&self) -> Self

Returns a duplicate 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 RoomOrAliasId

Source§

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

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

impl<'de> Deserialize<'de> for Box<RoomOrAliasId>

Available on crate feature serde only.
Source§

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

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

impl Display for RoomOrAliasId

Source§

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

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

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

Source§

fn from(room_alias_id: &'a RoomAliasId) -> Self

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl From<&RoomOrAliasId> for Arc<RoomOrAliasId>

Source§

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

Converts to this type from the input type.
Source§

impl From<&RoomOrAliasId> for Box<RoomOrAliasId>

Source§

fn from(id: &RoomOrAliasId) -> Self

Converts to this type from the input type.
Source§

impl From<&RoomOrAliasId> for Rc<RoomOrAliasId>

Source§

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

Converts to this type from the input type.
Source§

impl From<Box<RoomAliasId>> for Box<RoomOrAliasId>

Source§

fn from(room_alias_id: Box<RoomAliasId>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<RoomId>> for Box<RoomOrAliasId>

Source§

fn from(room_id: Box<RoomId>) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Box<RoomOrAliasId>

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for RoomOrAliasId

Source§

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

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

impl Ord for RoomOrAliasId

Source§

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

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

impl PartialEq<&RoomOrAliasId> for Box<RoomOrAliasId>

Source§

fn eq(&self, other: &&RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<&str> for Box<RoomOrAliasId>

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<&str> for RoomOrAliasId

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Box<RoomOrAliasId>> for &RoomOrAliasId

Source§

fn eq(&self, other: &Box<RoomOrAliasId>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Box<RoomOrAliasId>> for RoomOrAliasId

Source§

fn eq(&self, other: &Box<RoomOrAliasId>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomOrAliasId> for &str

Source§

fn eq(&self, other: &RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomOrAliasId> for Box<RoomOrAliasId>

Source§

fn eq(&self, other: &RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomOrAliasId> for String

Source§

fn eq(&self, other: &RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<RoomOrAliasId> for str

Source§

fn eq(&self, other: &RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<String> for Box<RoomOrAliasId>

Source§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<String> for RoomOrAliasId

Source§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<str> for Box<RoomOrAliasId>

Source§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<str> for RoomOrAliasId

Source§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for RoomOrAliasId

Source§

fn eq(&self, other: &RoomOrAliasId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for RoomOrAliasId

Source§

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

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

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

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for RoomOrAliasId

Available on crate feature serde only.
Source§

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

Serialize this value into the given Serde serializer. Read more
Source§

impl ToOwned for RoomOrAliasId

Source§

type Owned = Box<RoomOrAliasId>

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> Self::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 RoomAliasId

Source§

type Error = &'a RoomId

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

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

Performs the conversion.
Source§

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

Source§

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 RoomOrAliasId

Source§

type Error = Error

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

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

Performs the conversion.
Source§

impl TryFrom<&str> for Box<RoomOrAliasId>

Source§

type Error = Error

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

fn try_from(s: &str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<String> for Box<RoomOrAliasId>

Source§

type Error = Error

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

fn try_from(s: String) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Eq for RoomOrAliasId

Source§

impl StructuralPartialEq for RoomOrAliasId

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more