#[non_exhaustive]
pub enum ErrorKind {
WrongNumberOfParameters {
got: usize,
expected: usize,
},
ParseErrorAtKey {
key: String,
value: String,
expected_type: &'static str,
},
ParseErrorAtIndex {
index: usize,
value: String,
expected_type: &'static str,
},
ParseError {
value: String,
expected_type: &'static str,
},
InvalidUtf8InPathParam {
key: String,
},
UnsupportedType {
name: &'static str,
},
Message(String),
}
Expand description
The kinds of errors that can happen we deserializing into a Path
.
This type is obtained through FailedToDeserializePathParams::kind
or
FailedToDeserializePathParams::into_kind
and is useful for building
more precise error messages.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
WrongNumberOfParameters
Fields
got: usize
The number of actual parameters in the URI.
expected: usize
The number of expected parameters.
The URI contained the wrong number of parameters.
ParseErrorAtKey
Fields
key: String
The key at which the value was located.
value: String
The value from the URI.
expected_type: &'static str
The expected type of the value.
Failed to parse the value at a specific key into the expected type.
This variant is used when deserializing into types that have named fields, such as structs.
ParseErrorAtIndex
Fields
index: usize
The index at which the value was located.
value: String
The value from the URI.
expected_type: &'static str
The expected type of the value.
Failed to parse the value at a specific index into the expected type.
This variant is used when deserializing into sequence types, such as tuples.
ParseError
Fields
value: String
The value from the URI.
expected_type: &'static str
The expected type of the value.
Failed to parse a value into the expected type.
This variant is used when deserializing into a primitive type (such as String
and u32
).
InvalidUtf8InPathParam
Fields
key: String
The key at which the invalid value was located.
A parameter contained text that, once percent decoded, wasn’t valid UTF-8.
UnsupportedType
Fields
name: &'static str
The name of the unsupported type.
Tried to serialize into an unsupported type such as nested maps.
This error kind is caused by programmer errors and thus gets converted into a 500 Internal Server Error
response.
Message(String)
Catch-all variant for errors that don’t fit any other variant.
Trait Implementations
impl Eq for ErrorKind
impl StructuralEq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.