#error #diagnostics #derive #macro #api-key #thisdiagnostic

yanked thisdiagnostic-derive

为 thisdiagnostic 设计的推导宏

0.1.0 2021 年 8 月 1 日

#127 in #diagnostics


用于 thisdiagnostic

Apache-2.0

8KB
169

thisdiagnostic

thisdiagnostic 是一个 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.5MB
~35K SLoC