Struct ruma_common::MxcUri

source ·
pub struct MxcUri(/* private fields */);
Expand description

A URI that should be a Matrix-spec compliant MXC URI.

Implementations§

source§

impl MxcUri

source

pub fn as_str(&self) -> &str

Creates a string slice from this MxcUri.

source

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

Creates a byte slice from this MxcUri.

source§

impl MxcUri

source

pub fn media_id(&self) -> Result<&str, MxcUriError>

If this is a valid MXC URI, returns the media ID.

source

pub fn server_name(&self) -> Result<&ServerName, MxcUriError>

If this is a valid MXC URI, returns the server name.

source

pub fn parts(&self) -> Result<(&ServerName, &str), MxcUriError>

If this is a valid MXC URI, returns a (server_name, media_id) tuple, else it returns the error.

source

pub fn validate(&self) -> Result<(), MxcUriError>

Validates the URI and returns an error if it failed.

source

pub fn is_valid(&self) -> bool

Convenience method for .validate().is_ok().

Trait Implementations§

source§

impl AsRef<[u8]> for Box<MxcUri>

source§

fn as_ref(&self) -> &[u8]

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

impl AsRef<[u8]> for MxcUri

source§

fn as_ref(&self) -> &[u8]

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

impl AsRef<MxcUri> for MxcUri

source§

fn as_ref(&self) -> &MxcUri

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

impl AsRef<MxcUri> for OwnedMxcUri

source§

fn as_ref(&self) -> &MxcUri

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

impl AsRef<str> for Box<MxcUri>

source§

fn as_ref(&self) -> &str

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

impl AsRef<str> for MxcUri

source§

fn as_ref(&self) -> &str

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

impl Borrow<MxcUri> for OwnedMxcUri

source§

fn borrow(&self) -> &MxcUri

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<MxcUri>

source§

fn clone(&self) -> Self

Returns a copy 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 MxcUri

source§

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

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

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

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 MxcUri

source§

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

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

impl From<&MxcUri> for Arc<MxcUri>

source§

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

Converts to this type from the input type.
source§

impl From<&MxcUri> for Box<MxcUri>

source§

fn from(id: &MxcUri) -> Self

Converts to this type from the input type.
source§

impl From<&MxcUri> for OwnedMxcUri

source§

fn from(id: &MxcUri) -> OwnedMxcUri

Converts to this type from the input type.
source§

impl From<&MxcUri> for Rc<MxcUri>

source§

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

Converts to this type from the input type.
source§

impl From<&MxcUri> for String

source§

fn from(id: &MxcUri) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for &'a MxcUri

source§

fn from(s: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<&str> for Box<MxcUri>

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<Box<str>> for Box<MxcUri>

source§

fn from(s: Box<str>) -> Self

Converts to this type from the input type.
source§

impl From<OwnedMxcUri> for Box<MxcUri>

source§

fn from(a: OwnedMxcUri) -> Box<MxcUri>

Converts to this type from the input type.
source§

impl From<String> for Box<MxcUri>

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl Hash for MxcUri

source§

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

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

impl Ord for MxcUri

source§

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

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

impl PartialEq<&MxcUri> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&MxcUri> for OwnedMxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<MxcUri>> for &MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<MxcUri>> for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MxcUri> for &str

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MxcUri> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MxcUri> for OwnedMxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MxcUri> for String

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<MxcUri> for str

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedMxcUri> for &MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedMxcUri> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedMxcUri> for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Box<MxcUri>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for MxcUri

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for MxcUri

source§

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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for MxcUri

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 MxcUri

§

type Owned = OwnedMxcUri

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 Eq for MxcUri

source§

impl StructuralEq for MxcUri

source§

impl StructuralPartialEq for MxcUri

Auto Trait Implementations§

§

impl RefUnwindSafe for MxcUri

§

impl Send for MxcUri

§

impl !Sized for MxcUri

§

impl Sync for MxcUri

§

impl Unpin for MxcUri

§

impl UnwindSafe for MxcUri

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T, W> HasTypeWitness<W> for Twhere W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

impl<T> Identity for Twhere T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

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

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more