#[non_exhaustive]
pub enum MatrixUriError {
WrongScheme,
TooManyActions,
UnknownQueryItem,
}Expand description
An error occurred while validating a MatrixURI.
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.
WrongScheme
The string does not start with matrix:.
TooManyActions
The string contains too many actions.
UnknownQueryItem
The string contains an unknown query item.
Trait Implementations§
source§impl Clone for MatrixUriError
impl Clone for MatrixUriError
source§fn clone(&self) -> MatrixUriError
fn clone(&self) -> MatrixUriError
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 MatrixUriError
impl Debug for MatrixUriError
source§impl Display for MatrixUriError
impl Display for MatrixUriError
source§impl Error for MatrixUriError
impl Error for MatrixUriError
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<MatrixUriError> for Error
impl From<MatrixUriError> for Error
source§fn from(source: MatrixUriError) -> Self
fn from(source: MatrixUriError) -> Self
Converts to this type from the input type.
source§impl Hash for MatrixUriError
impl Hash for MatrixUriError
source§impl PartialEq<MatrixUriError> for MatrixUriError
impl PartialEq<MatrixUriError> for MatrixUriError
source§fn eq(&self, other: &MatrixUriError) -> bool
fn eq(&self, other: &MatrixUriError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.