#[non_exhaustive]
pub enum MxcUriError {
WrongSchema,
MissingSlash,
MediaIdMalformed,
ServerNameMalformed,
}Expand description
An error occurred while validating an MXC URI.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
WrongSchema
MXC URI did not start with mxc://.
MissingSlash
MXC URI did not have first slash, required for server.name/media_id.
MediaIdMalformed
Media identifier malformed due to invalid characters detected.
Valid characters are (in regex notation) [A-Za-z0-9_-]+.
See here for more details.
ServerNameMalformed
Server identifier malformed: invalid IP or domain name.
Trait Implementations§
source§impl Clone for MxcUriError
impl Clone for MxcUriError
source§fn clone(&self) -> MxcUriError
fn clone(&self) -> MxcUriError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MxcUriError
impl Debug for MxcUriError
source§impl Display for MxcUriError
impl Display for MxcUriError
source§impl Error for MxcUriError
impl Error for MxcUriError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MxcUriError> for Error
impl From<MxcUriError> for Error
source§fn from(source: MxcUriError) -> Self
fn from(source: MxcUriError) -> Self
Converts to this type from the input type.
source§impl Hash for MxcUriError
impl Hash for MxcUriError
source§impl PartialEq<MxcUriError> for MxcUriError
impl PartialEq<MxcUriError> for MxcUriError
source§fn eq(&self, other: &MxcUriError) -> bool
fn eq(&self, other: &MxcUriError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.