Crates.io | errjson |
lib.rs | errjson |
version | 0.0.6 |
source | src |
created_at | 2023-05-08 09:50:46.715394 |
updated_at | 2023-06-04 16:36:39.105404 |
description | Easy complex and intuitive Rust Error json |
homepage | https://codeberg.org/AlbanMinassian/errorjson |
repository | https://codeberg.org/AlbanMinassian/errorjson |
max_upload_size | |
id | 859645 |
size | 16,793 |
ErrJson: easy complex and intuitive Rust Error json
use errjson::ErrJson;
fn myfnc() -> Result<i32, Box<dyn std::error::Error>> {
ErrJson!(code = "ERR001", message = "An error message")
}
return a valid Rust Error with a json stringify
{
"iserr":true,
"err":{
"code":"ERR001",
"message":"An error message"
}
}
use errjson::ErrJson;
fn myfnc() -> Result<i32, Box<dyn std::error::Error>> {
let error = "NaN".parse::<u32>().unwrap_err();
ErrJson!(
code = "ERR002",
message = "An error message",
origin = error // <-- 'std::error::Error' only
)
}
return
{
"iserr":true,
"err":{
"code":"ERR002",
"message":"An error message",
"origin": "invalid digit found in string"
}
}
Deep error allowed (see example full example code)
{
"meta": { "whoami": { "filename": "errjson/examples/full.rs", "function": "main", "line": 42 } },
"iserr": true,
"err": {
"code": "ERR0001",
"message": "Error when main() call myfnc()",
"origin": { // rust 'caused' error
"meta": { "whoami": { "filename": "errjson/examples/full.rs", "function": "myfnc", "line": 26 } },
"iserr": true,
"err": {
"code": "ERR0002",
"message": "Error when myfnc() call mysubfnc()",
"origin": { // rust 'caused' error
"meta": { "whoami": { "filename": "errjson/examples/full.rs", "function": "mysubfnc", "line": 11 } },
"iserr": true,
"err": {
"code": "ERR003",
"message": "Error when mysubfnc() call mysubsubfnc()",
"origin": "No such file or directory (os error 2)", // native rust 'caused' error
"payload": { "more": { "complex": "data" } } // <-- add another data if you want
},
}
},
}
},
}
use errjson::ErrJson;
fn myfnc() -> Result<i32, Box<dyn std::error::Error>> {
ErrJson!(
code = "ERR003",
message = "An error message",
payload = serde_json::json!({ "more": "data" }) // <-- 'serde_json::Value' only
)
}
return
{
"iserr":true,
"err":{
"code":"ERR003",
"message":"An error message",
"payload": { "more": "data" }
}
}
cargo run --example full
cargo run --example minimal
Without ErrJson, you can can write basic Err
like this, but hard with a complex json, not normalize and difficult to embed 'caused' error.
Err(r#"{"error":"json", ...}"#);
Err(serde_json::to_string(serde_json::json!({"error": "json", ...})));