Struct matrix_sdk_base::ruma::MatrixToUri
pub struct MatrixToUri { /* private fields */ }
Expand description
The matrix.to
URI representation of a user, room or event.
Get the URI through its Display
implementation (i.e. by interpolating it
in a formatting macro or via .to_string()
).
Implementations§
§impl MatrixToUri
impl MatrixToUri
pub fn id(&self) -> &MatrixId
pub fn id(&self) -> &MatrixId
The identifier represented by this matrix.to
URI.
pub fn via(&self) -> &[OwnedServerName]
pub fn via(&self) -> &[OwnedServerName]
Matrix servers usable to route a RoomId
.
pub fn parse(s: &str) -> Result<MatrixToUri, Error>
pub fn parse(s: &str) -> Result<MatrixToUri, Error>
Try parsing a &str
into a MatrixToUri
.
Trait Implementations§
§impl Debug for MatrixToUri
impl Debug for MatrixToUri
§impl Display for MatrixToUri
impl Display for MatrixToUri
§impl FromStr for MatrixToUri
impl FromStr for MatrixToUri
§impl PartialEq for MatrixToUri
impl PartialEq for MatrixToUri
§fn eq(&self, other: &MatrixToUri) -> bool
fn eq(&self, other: &MatrixToUri) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl TryFrom<&str> for MatrixToUri
impl TryFrom<&str> for MatrixToUri
impl Eq for MatrixToUri
impl StructuralEq for MatrixToUri
impl StructuralPartialEq for MatrixToUri
Auto Trait Implementations§
impl RefUnwindSafe for MatrixToUri
impl Send for MatrixToUri
impl Sync for MatrixToUri
impl Unpin for MatrixToUri
impl UnwindSafe for MatrixToUri
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.