Fixed macro bug

This commit is contained in:
Franklin 2022-08-31 13:10:10 -04:00
parent 8cf7f3da93
commit 6a2aef3436
3 changed files with 7 additions and 5 deletions

2
Cargo.lock generated
View File

@ -183,7 +183,7 @@ dependencies = [
[[package]] [[package]]
name = "actix-web-utils" name = "actix-web-utils"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"actix-web", "actix-web",
"log", "log",

View File

@ -1,10 +1,12 @@
[package] [package]
name = "actix-web-utils" name = "actix-web-utils"
version = "0.2.4" version = "0.2.5"
edition = "2021" edition = "2021"
authors = ["Franklin E. Blanco"] authors = ["Franklin E. Blanco"]
description = "Just some useful addons for actix web." description = "Just some useful addons for actix web."
license = "MIT" license = "MIT"
readme = "README.md"
repository = "https://github.com/franklinblanco/actix-web-utils"
[lib] [lib]

View File

@ -10,19 +10,19 @@ macro_rules! unwrap_or_return_handled_error {
( $e:expr ) => { ( $e:expr ) => {
match $e { match $e {
Ok(value) => value, Ok(value) => value,
Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(error, 500) Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(&error, 500)
} }
}; };
( $error_status_code:literal, $e:expr ) => { ( $error_status_code:literal, $e:expr ) => {
match $e { match $e {
Ok(value) => value, Ok(value) => value,
Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(error, error_status_code) Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(&error, error_status_code)
} }
}; };
( $error_status_code:literal, $success_status_code:literal, $e:expr) => { ( $error_status_code:literal, $success_status_code:literal, $e:expr) => {
match $e { match $e {
Ok(value) => return actix_web_utils::typed_response::TypedHttpResponse::return_standard_response($success_status_code, value), Ok(value) => return actix_web_utils::typed_response::TypedHttpResponse::return_standard_response($success_status_code, value),
Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(error, error_status_code) Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable(&error, error_status_code)
} }
} }
} }