pub struct HttpResponseError {
pub code: u16,
pub message: String,
pub error_reference: Option<String>,
}Expand description
Error returned when an HTTP request receives a non-successful response.
This error includes the status code and a serialized error message in JSON
format matching the Ruby SDK’s serialized_error() output.
§JSON Message Format
The message field contains JSON with any of these fields from the response:
errors: Array of error messageserror: Single error messageerror_description: Description of the errorerror_reference: Debugging reference including X-Request-Id
§Example
use shopify_sdk::clients::HttpResponseError;
let error = HttpResponseError {
code: 404,
message: r#"{"error":"Not found"}"#.to_string(),
error_reference: Some("abc-123".to_string()),
};
println!("Status {}: {}", error.code, error.message);Fields§
§code: u16The HTTP status code of the response.
message: StringSerialized error message in JSON format.
error_reference: Option<String>Reference ID for error reporting (from X-Request-Id header).
Trait Implementations§
Source§impl Debug for HttpResponseError
impl Debug for HttpResponseError
Source§impl Display for HttpResponseError
impl Display for HttpResponseError
Source§impl Error for HttpResponseError
impl Error for HttpResponseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<HttpResponseError> for HttpError
impl From<HttpResponseError> for HttpError
Source§fn from(source: HttpResponseError) -> Self
fn from(source: HttpResponseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HttpResponseError
impl RefUnwindSafe for HttpResponseError
impl Send for HttpResponseError
impl Sync for HttpResponseError
impl Unpin for HttpResponseError
impl UnwindSafe for HttpResponseError
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