#[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 for MxcUriError
impl PartialEq 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 ==
.impl Copy for MxcUriError
impl Eq for MxcUriError
impl StructuralPartialEq for MxcUriError
Auto Trait Implementations§
impl Freeze for MxcUriError
impl RefUnwindSafe for MxcUriError
impl Send for MxcUriError
impl Sync for MxcUriError
impl Unpin for MxcUriError
impl UnwindSafe for MxcUriError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)