pub enum RequestError {
MissingParam {
name: String,
},
IncorrectParamType {
actual: RequestParamType,
expected: RequestParamType,
},
IntegerOverflow {
value: u128,
expected: String,
},
Json,
Binary,
TaggedBase64 {
reason: String,
},
UnsupportedContentType,
Http {
reason: String,
},
InvalidParam {
param_type: String,
reason: String,
},
TagMismatch {
actual: String,
expected: String,
},
}Variants§
MissingParam
IncorrectParamType
IntegerOverflow
Json
Binary
TaggedBase64
UnsupportedContentType
Http
InvalidParam
TagMismatch
Trait Implementations§
Source§impl Clone for RequestError
impl Clone for RequestError
Source§fn clone(&self) -> RequestError
fn clone(&self) -> RequestError
Returns a duplicate 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 RequestError
impl Debug for RequestError
Source§impl<'de> Deserialize<'de> for RequestError
impl<'de> Deserialize<'de> for RequestError
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RequestError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RequestError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RequestError
impl Display for RequestError
Source§impl Error for RequestError
impl Error for RequestError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
Source§impl ErrorCompat for RequestError
impl ErrorCompat for RequestError
§fn iter_chain(&self) -> ChainCompat<'_, '_>where
Self: AsErrorSource,
fn iter_chain(&self) -> ChainCompat<'_, '_>where
Self: AsErrorSource,
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to
Error::source. Read moreSource§impl<E> From<RequestError> for RouteError<E>
impl<E> From<RequestError> for RouteError<E>
Source§fn from(err: RequestError) -> RouteError<E>
fn from(err: RequestError) -> RouteError<E>
Converts to this type from the input type.
Source§impl From<RequestError> for ServerError
impl From<RequestError> for ServerError
Source§fn from(source: RequestError) -> ServerError
fn from(source: RequestError) -> ServerError
Converts to this type from the input type.
Source§impl<E> From<RequestError> for SocketError<E>
impl<E> From<RequestError> for SocketError<E>
Source§fn from(err: RequestError) -> SocketError<E>
fn from(err: RequestError) -> SocketError<E>
Converts to this type from the input type.
Source§impl IntoError<RequestError> for BinarySnafuwhere
RequestError: Error + ErrorCompat,
impl IntoError<RequestError> for BinarySnafuwhere
RequestError: Error + ErrorCompat,
Source§fn into_error(
self,
error: <BinarySnafu as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <BinarySnafu as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0> IntoError<RequestError> for HttpSnafu<__T0>
impl<__T0> IntoError<RequestError> for HttpSnafu<__T0>
Source§fn into_error(
self,
error: <HttpSnafu<__T0> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <HttpSnafu<__T0> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0, __T1> IntoError<RequestError> for IncorrectParamTypeSnafu<__T0, __T1>where
RequestError: Error + ErrorCompat,
__T0: Into<RequestParamType>,
__T1: Into<RequestParamType>,
impl<__T0, __T1> IntoError<RequestError> for IncorrectParamTypeSnafu<__T0, __T1>where
RequestError: Error + ErrorCompat,
__T0: Into<RequestParamType>,
__T1: Into<RequestParamType>,
Source§fn into_error(
self,
error: <IncorrectParamTypeSnafu<__T0, __T1> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <IncorrectParamTypeSnafu<__T0, __T1> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0, __T1> IntoError<RequestError> for IntegerOverflowSnafu<__T0, __T1>
impl<__T0, __T1> IntoError<RequestError> for IntegerOverflowSnafu<__T0, __T1>
Source§fn into_error(
self,
error: <IntegerOverflowSnafu<__T0, __T1> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <IntegerOverflowSnafu<__T0, __T1> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0, __T1> IntoError<RequestError> for InvalidParamSnafu<__T0, __T1>
impl<__T0, __T1> IntoError<RequestError> for InvalidParamSnafu<__T0, __T1>
Source§fn into_error(
self,
error: <InvalidParamSnafu<__T0, __T1> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <InvalidParamSnafu<__T0, __T1> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl IntoError<RequestError> for JsonSnafuwhere
RequestError: Error + ErrorCompat,
impl IntoError<RequestError> for JsonSnafuwhere
RequestError: Error + ErrorCompat,
Source§fn into_error(
self,
error: <JsonSnafu as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <JsonSnafu as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0> IntoError<RequestError> for MissingParamSnafu<__T0>
impl<__T0> IntoError<RequestError> for MissingParamSnafu<__T0>
Source§fn into_error(
self,
error: <MissingParamSnafu<__T0> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <MissingParamSnafu<__T0> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0, __T1> IntoError<RequestError> for TagMismatchSnafu<__T0, __T1>
impl<__T0, __T1> IntoError<RequestError> for TagMismatchSnafu<__T0, __T1>
Source§fn into_error(
self,
error: <TagMismatchSnafu<__T0, __T1> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <TagMismatchSnafu<__T0, __T1> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl<__T0> IntoError<RequestError> for TaggedBase64Snafu<__T0>
impl<__T0> IntoError<RequestError> for TaggedBase64Snafu<__T0>
Source§fn into_error(
self,
error: <TaggedBase64Snafu<__T0> as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <TaggedBase64Snafu<__T0> as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl IntoError<RequestError> for UnsupportedContentTypeSnafuwhere
RequestError: Error + ErrorCompat,
impl IntoError<RequestError> for UnsupportedContentTypeSnafuwhere
RequestError: Error + ErrorCompat,
Source§fn into_error(
self,
error: <UnsupportedContentTypeSnafu as IntoError<RequestError>>::Source,
) -> RequestError
fn into_error( self, error: <UnsupportedContentTypeSnafu as IntoError<RequestError>>::Source, ) -> RequestError
Combine the information to produce the error
Source§impl Serialize for RequestError
impl Serialize for RequestError
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RequestError
impl RefUnwindSafe for RequestError
impl Send for RequestError
impl Sync for RequestError
impl Unpin for RequestError
impl UnsafeUnpin for RequestError
impl UnwindSafe for RequestError
Blanket Implementations§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
impl<E> InstrumentError for Ewhere
TracedError<E>: From<E>,
Source§type Instrumented = TracedError<E>
type Instrumented = TracedError<E>
The type of the wrapped error after instrumentation
Source§fn in_current_span(self) -> <E as InstrumentError>::Instrumented
fn in_current_span(self) -> <E as InstrumentError>::Instrumented
Instrument an Error by bundling it with a SpanTrace Read more
§impl<D> OwoColorize for D
impl<D> OwoColorize for D
§fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
Set the foreground color generically Read more
§fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
Set the background color generically. Read more
§fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>
fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>
Change the background color to yellow
§fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
Change the foreground color to magenta
§fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
Change the background color to magenta
§fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
Change the background color to purple
§fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>
fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>
Change the foreground color to the terminal default
§fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>
fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>
Change the background color to the terminal default
§fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>
fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>
Change the foreground color to bright black
§fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>
fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>
Change the background color to bright black
§fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>
fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>
Change the foreground color to bright red
§fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>
fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>
Change the background color to bright red
§fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>
fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>
Change the foreground color to bright green
§fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>
fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>
Change the background color to bright green
§fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>
fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>
Change the foreground color to bright yellow
§fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>
fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>
Change the background color to bright yellow
§fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>
fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>
Change the foreground color to bright blue
§fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>
fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>
Change the background color to bright blue
§fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
Change the foreground color to bright magenta
§fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
Change the background color to bright magenta
§fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
Change the foreground color to bright purple
§fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
Change the background color to bright purple
§fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>
fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>
Change the foreground color to bright cyan
§fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>
fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>
Change the background color to bright cyan
§fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>
fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>
Change the foreground color to bright white
§fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>
fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>
Change the background color to bright white
§fn blink_fast<'a>(&'a self) -> BlinkFastDisplay<'a, Self>
fn blink_fast<'a>(&'a self) -> BlinkFastDisplay<'a, Self>
Make the text blink (but fast!)
Hide the text
§fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>
fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>
Cross out the text
§fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
Set the foreground color at runtime. Only use if you do not know which color will be used at
compile-time. If the color is constant, use either
OwoColorize::fg or
a color-specific method, such as OwoColorize::green, Read more§fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
Set the background color at runtime. Only use if you do not know what color to use at
compile-time. If the color is constant, use either
OwoColorize::bg or
a color-specific method, such as OwoColorize::on_yellow, Read more§fn fg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
Set the foreground color to a specific RGB value.
§fn bg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
Set the background color to a specific RGB value.
§fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
Sets the foreground color to an RGB value.
§fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
Sets the background color to an RGB value.