2 releases

0.1.1 Oct 10, 2024
0.1.0 Oct 10, 2024

#328 in Procedural macros

Download history 253/week @ 2024-10-06 79/week @ 2024-10-13 8/week @ 2024-10-20 15/week @ 2024-10-27

355 downloads per month

MIT license

7KB
101 lines

Axum Error Handler

Please notice that this is a expiremental project.

This proc-macro depends on axum, thiserror and serde_json crates.

Basic Usage

use axum_error_handler::AxumErrorResponse;
    use thiserror::Error;

    #[derive(Debug, Error, AxumErrorResponse)]
    pub enum TestError {
        #[error("Bad request: {0}")]
        #[status_code("400")]
        #[code("BAD_REQUEST")]
        BadRequest(String),
        #[error("Internal server error {0}")]
        #[status_code("500")]
        #[code("INTERNAL_SERVER_ERROR")]
        AnotherNoStringError(#[from] InnerError),
    }

    #[derive(Debug, Error)]
    pub enum InnerError {
        #[error("Bad request: {0}")]
        BadRequest(String),
        #[error("Internal server error {0}")]
        AnotherNoStringError(axum::Error),
    }

    #[tokio::test]
    async fn is_correct_body() {
        let err = TestError::AnotherNoStringError(InnerError::BadRequest("foo".to_string()));

        let resp = err.into_response();
        let body = resp.into_body();

        let bytes = to_bytes(body, 10485760).await.unwrap();
        let body_str = String::from_utf8_lossy(&bytes).to_string();

        println!("{:?}", body_str);
    }

Output

{
  "result": null,
    "error": {
        "code": "INTERNAL_SERVER_ERROR",
        "message": "Internal server error foo"
    }
}

Dependencies

~245–690KB
~17K SLoC