pub struct ApiErrorResponse {
pub code: Option<String>,
pub message: String,
pub details: Option<Value>,
pub correlation_id: Option<String>,
}Expand description
JSON body returned by the OpenApp API for non-2xx responses.
Fields§
§code: Option<String>Short machine-friendly error code (e.g. "unauthorized", "validation_error").
message: StringHuman-readable message suitable for surfacing directly to the user.
details: Option<Value>Optional structured details payload.
correlation_id: Option<String>Server-generated correlation id, when present.
Implementations§
Source§impl ApiErrorResponse
impl ApiErrorResponse
Sourcepub fn synthesize(message: impl Into<String>) -> Self
pub fn synthesize(message: impl Into<String>) -> Self
Build a synthetic envelope when the backend returned a non-2xx response whose body
was not JSON (e.g. a bare 502 from a proxy). This keeps downstream error surfaces
uniform.
Trait Implementations§
Source§impl Clone for ApiErrorResponse
impl Clone for ApiErrorResponse
Source§fn clone(&self) -> ApiErrorResponse
fn clone(&self) -> ApiErrorResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApiErrorResponse
impl Debug for ApiErrorResponse
Source§impl<'de> Deserialize<'de> for ApiErrorResponse
impl<'de> Deserialize<'de> for ApiErrorResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApiErrorResponse
impl PartialEq for ApiErrorResponse
Source§fn eq(&self, other: &ApiErrorResponse) -> bool
fn eq(&self, other: &ApiErrorResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiErrorResponse
impl Serialize for ApiErrorResponse
impl Eq for ApiErrorResponse
impl StructuralPartialEq for ApiErrorResponse
Auto Trait Implementations§
impl Freeze for ApiErrorResponse
impl RefUnwindSafe for ApiErrorResponse
impl Send for ApiErrorResponse
impl Sync for ApiErrorResponse
impl Unpin for ApiErrorResponse
impl UnsafeUnpin for ApiErrorResponse
impl UnwindSafe for ApiErrorResponse
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