guilded_http 0.1.0-dev.13

Guilded API HTTP Client for the Guilded-rs ecosystem of crates.
Documentation
use std::error::Error as StdError;

use hyper::StatusCode;
use serde::Deserialize;

#[derive(Debug)]
pub struct Error {
    pub(super) source: Option<Box<dyn StdError + Send + Sync>>,
    pub(super) r#type: ErrorType,
}

#[derive(Debug)]
pub enum ErrorType {
    ChunkingResponse,
    HttpHeaderCreation {
        name: String,
    },
    HttpRequestBuild,
    Json,
    Parsing {
        body: Vec<u8>,
    },
    RequestError,
    RequestTimeout,
    Response {
        body: Vec<u8>,
        error: ApiError,
        status: StatusCode,
    },
}

#[derive(Debug, Deserialize)]
pub struct ApiError {
    pub code: String,
    pub message: String,
}