удобствами
Добавление контекста, backtrace
* полезные максросы вроде anyhow!() чтобы из строк на месте ошибку делать * добавление контекста * ensure!()
еще можно сделать свою ошибку с помощью https://docs.rs/anyhow/latest/anyhow/struct.Error.html Например если делаешь CLI который работает в двух режимах: человеческом и JSON. В человеческом режиме ошибку печатаешь как обычно: Error: Failed to read instrs from ./path/to/instrs.json Caused by: No such file or directory (os error 2) А в JSON может иметь смысл добавить поле error_code, чтобы не грепать строки потом, а читать только это поле. // Can be used to unify a machine-readable error code #[derive(Debug)] struct ErrorCode { error: String, // This is only printed in JSON code: String, } match e.downcast::<ErrorCode>() { Ok(error_code) => println!( "{}", json!({ "error": error_code.error, "code": error_code.code, "causes": causes }) ), Err(e) => println!("{}", json!({ "error": e.to_string(), "causes": causes })), } Some(_) => Err(anyhow!(ErrorCode { error: "Database schema is newer than what this installation of aclctl can support, you need to update aclctl".into(), code: "outdated_aclctl".into() })), None => Err(anyhow!(ErrorCode { error: "Database has not yet been initialized".into(), code: "not_initialized".into() })),
Обсуждают сегодня