pub struct ErrorResponse {
pub status_code: Option<StatusCode>,
pub error_text: String,
pub original_text: Option<String>,
pub public_error: bool,
}
Expand description
Data structure responsible for server errors.
Fields§
§status_code: Option<StatusCode>
§error_text: String
§original_text: Option<String>
§public_error: bool
Implementations§
Source§impl ErrorResponse
impl ErrorResponse
Sourcepub fn with_400_pub(&mut self) -> &mut Self
pub fn with_400_pub(&mut self) -> &mut Self
Public error BAD REQUEST (400).
Sourcepub fn with_401_pub(&mut self) -> &mut Self
pub fn with_401_pub(&mut self) -> &mut Self
Public error UNAUTHORIZED (401).
Sourcepub fn with_403_pub(&mut self) -> &mut Self
pub fn with_403_pub(&mut self) -> &mut Self
Public error FORBIDDEN (403).
Sourcepub fn with_404_pub(&mut self) -> &mut Self
pub fn with_404_pub(&mut self) -> &mut Self
Public error NOT FOUND (404).
Sourcepub fn with_405_pub(&mut self) -> &mut Self
pub fn with_405_pub(&mut self) -> &mut Self
Public error METHOD NOT ALLOWED (405).
Sourcepub fn with_423_pub(&mut self) -> &mut Self
pub fn with_423_pub(&mut self) -> &mut Self
Public error LOCKED (423).
Sourcepub fn with_500_pub(&mut self) -> &mut Self
pub fn with_500_pub(&mut self) -> &mut Self
Public error INTERNAL SERVER ERROR (500).
Trait Implementations§
Source§impl Debug for ErrorResponse
impl Debug for ErrorResponse
Source§impl EndpointOutRegister for ErrorResponse
impl EndpointOutRegister for ErrorResponse
Source§fn register(components: &mut Components, operation: &mut Operation)
fn register(components: &mut Components, operation: &mut Operation)
Registers error types for OpenAPI.
Source§impl From<&str> for ErrorResponse
impl From<&str> for ErrorResponse
Source§impl From<Box<dyn Error + Send + Sync>> for ErrorResponse
impl From<Box<dyn Error + Send + Sync>> for ErrorResponse
Source§fn from(value: BoxDynError) -> Self
fn from(value: BoxDynError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<ConfigErrors> for ErrorResponse
impl From<ConfigErrors> for ErrorResponse
Source§fn from(value: ConfigErrors) -> Self
fn from(value: ConfigErrors) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<DbErr> for ErrorResponse
impl From<DbErr> for ErrorResponse
Source§impl From<DecodeError> for ErrorResponse
impl From<DecodeError> for ErrorResponse
Source§fn from(value: DecodeError) -> Self
fn from(value: DecodeError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<Error> for ErrorResponse
impl From<Error> for ErrorResponse
Source§impl From<FromUtf8Error> for ErrorResponse
impl From<FromUtf8Error> for ErrorResponse
Source§fn from(value: FromUtf8Error) -> Self
fn from(value: FromUtf8Error) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<InvalidStatusCode> for ErrorResponse
impl From<InvalidStatusCode> for ErrorResponse
Source§fn from(value: InvalidStatusCode) -> Self
fn from(value: InvalidStatusCode) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<ParseError> for ErrorResponse
impl From<ParseError> for ErrorResponse
Source§fn from(value: ParseError) -> Self
fn from(value: ParseError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<RecvError> for ErrorResponse
impl From<RecvError> for ErrorResponse
Source§impl From<RedisError> for ErrorResponse
impl From<RedisError> for ErrorResponse
Source§fn from(value: RedisError) -> Self
fn from(value: RedisError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<RunError<RedisError>> for ErrorResponse
impl From<RunError<RedisError>> for ErrorResponse
Source§fn from(value: RunError<RedisError>) -> Self
fn from(value: RunError<RedisError>) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl<U> From<SendError<U>> for ErrorResponse
impl<U> From<SendError<U>> for ErrorResponse
Source§impl From<SetLoggerError> for ErrorResponse
impl From<SetLoggerError> for ErrorResponse
Source§fn from(value: SetLoggerError) -> Self
fn from(value: SetLoggerError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<StatusError> for ErrorResponse
impl From<StatusError> for ErrorResponse
Source§fn from(value: StatusError) -> Self
fn from(value: StatusError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<String> for ErrorResponse
impl From<String> for ErrorResponse
Source§impl From<ToStrError> for ErrorResponse
impl From<ToStrError> for ErrorResponse
Source§fn from(value: ToStrError) -> Self
fn from(value: ToStrError) -> Self
Создаёт ErrorResponse
из данной ошибки.
Source§impl From<VarError> for ErrorResponse
impl From<VarError> for ErrorResponse
Source§impl Writer for ErrorResponse
impl Writer for ErrorResponse
Source§fn write<'life0, 'life1, 'life2, 'async_trait>(
self,
_req: &'life0 mut Request,
_depot: &'life1 mut Depot,
res: &'life2 mut Response,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn write<'life0, 'life1, 'life2, 'async_trait>(
self,
_req: &'life0 mut Request,
_depot: &'life1 mut Depot,
res: &'life2 mut Response,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Method for sending an error message to the client.
Auto Trait Implementations§
impl Freeze for ErrorResponse
impl RefUnwindSafe for ErrorResponse
impl Send for ErrorResponse
impl Sync for ErrorResponse
impl Unpin for ErrorResponse
impl UnwindSafe for ErrorResponse
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
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.