pub enum ApiError {
BadRequest(ErrorState),
Unauthorized(ErrorState),
Forbidden(ErrorState),
NotFound(ErrorState),
Conflict(ErrorState),
Internal(ErrorState),
}Available on crate feature
execution-server only.Variants§
BadRequest(ErrorState)
Forbidden(ErrorState)
NotFound(ErrorState)
Conflict(ErrorState)
Internal(ErrorState)
Implementations§
Source§impl ApiError
impl ApiError
pub fn bad_request(message: impl Into<String>) -> ApiError
pub fn not_found(message: impl Into<String>) -> ApiError
pub fn forbidden(message: impl Into<String>) -> ApiError
pub fn conflict(message: impl Into<String>) -> ApiError
pub fn internal(message: impl Into<String>) -> ApiError
pub fn with_request_id(self, request_id: impl Into<String>) -> ApiError
pub fn with_details(self, details: Value) -> ApiError
Trait Implementations§
Source§impl IntoResponse for ApiError
impl IntoResponse for ApiError
Source§fn into_response(self) -> Response<Body>
fn into_response(self) -> Response<Body>
Create a response.
Auto Trait Implementations§
impl Freeze for ApiError
impl RefUnwindSafe for ApiError
impl Send for ApiError
impl Sync for ApiError
impl Unpin for ApiError
impl UnsafeUnpin for ApiError
impl UnwindSafe for ApiError
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
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>
Converts
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>
Converts
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 more