pub enum ContextJsonDeserializationError {
JsonDeserialization(JsonDeserializationError),
ContextCreation(ContextCreationError),
}
Expand description
Errors possible when deserializing request context from JSON
Variants§
JsonDeserialization(JsonDeserializationError)
Any JSON deserialization error
(TODO: as of this writing, JsonDeserializationError
actually contains
many variants that aren’t possible here)
ContextCreation(ContextCreationError)
Error constructing the Context
itself
Trait Implementations§
source§impl Error for ContextJsonDeserializationError
impl Error for ContextJsonDeserializationError
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<ContextCreationError> for ContextJsonDeserializationError
impl From<ContextCreationError> for ContextJsonDeserializationError
source§fn from(source: ContextCreationError) -> Self
fn from(source: ContextCreationError) -> Self
Converts to this type from the input type.
source§impl From<JsonDeserializationError> for ContextJsonDeserializationError
impl From<JsonDeserializationError> for ContextJsonDeserializationError
source§fn from(source: JsonDeserializationError) -> Self
fn from(source: JsonDeserializationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ContextJsonDeserializationError
impl Send for ContextJsonDeserializationError
impl Sync for ContextJsonDeserializationError
impl Unpin for ContextJsonDeserializationError
impl !UnwindSafe for ContextJsonDeserializationError
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