0.1.0 |
|
---|
#4 在 #weird
12KB
120 代码行
此诊断程序
此诊断程序
是一个Rust库,用于为错误添加丰富的诊断元数据,以实现一些非常花哨且可定制的错误报告!
示例
您要编写的代码
use thisdiagnostic::Diagnostic;
use thiserror::Error;
#[derive(Error, Debug, Diagnostic)]
pub enum ApiError {
/// Returned when a generic http client-related error has occurred.
#[label("mytool::api::generic_http")]
#[error("Request error:\n\t{0}")]
HttpError(Box<dyn std::error::Error + Send + Sync>, String),
/// Returned when a URL failed to parse.
#[label("mytool::api::invalid_url")]
#[help("Check the URL syntax. URLs must include the protocol part (https://, etc)")]
#[error(transparent)]
UrlParseError(#[from] Box<dyn std::error::Error + Send + Sync>),
/// An API key is required.
#[label("mytool::api::needs_api_key")]
#[help("Please supply an API key.")]
#[error("Endpoint operation requires an API key.")]
NeedsApiKey,
/// Unexpected response
#[label("mytool::api::unexpected_response")]
#[help("This is likely a bug with the server API (or its documentation). Please report it.")]
#[error("Unexpected or undocumented response.")]
BadResponse,
}
您将获得的代码
$ ./mytool
Error: mytool::api::needs_api_key
Endpoint operation requires an API key.
help: Please supply an API key.
许可证
本项目及其任何贡献均受 Apache 2.0许可证 管理。
依赖项
~1–11MB
~78K SLoC