#[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::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
sourceimpl PartialEq<ErrorKind> for ErrorKind
impl PartialEq<ErrorKind> 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more