#derive-error #error #error-handling #derive #standard-error

no-std no-std-thiserror

支持 no_std 的 thiserror

1 个不稳定版本

0.1.0 2024 年 1 月 6 日

#1681Rust 模式

MIT/Apache

31KB
370

注意:这是一个添加了 no_std 支持的 thiserror 修改版。

使用 derive(Error)

github crates.io docs.rs build status

该库提供了一个方便的 derive 宏,用于标准库的 std::error::Error 特性。

[dependencies]
thiserror = "1.0"

编译器支持:需要 rustc 1.56+


示例

use thiserror::Error;

#[derive(Error, Debug)]
pub enum DataStoreError {
    #[error("data store disconnected")]
    Disconnect(#[from] io::Error),
    #[error("the data for key `{0}` is not available")]
    Redaction(String),
    #[error("invalid header (expected {expected:?}, found {found:?})")]
    InvalidHeader {
        expected: String,
        found: String,
    },
    #[error("unknown data store error")]
    Unknown,
}

详细信息

  • Thiserror 故意不显示在你的公共 API 中。你得到的结果与手动实现 std::error::Error 特性相同,从手动实现切换到 thiserror 或相反都不会破坏 API。

  • 错误可以是枚举、具有命名字段的元组或单元结构体。

  • 如果你在结构体或枚举的每个变体上提供 #[error("...")] 消息,将为你的错误生成一个 Display 实现,如示例中所示。

    消息支持从错误中插入字段的简写。

    • #[error("{var}")] ——> write!("{}", self.var)
    • #[error("{0}")] ⟶ write!("{}", self.0)
    • #[error("{var:?}")] ⟶ write!("{:?}", self.var)
    • #[error("{0:?}")] ⟶ write!("{:?}", self.0)

    这些简写可以与任何其他格式化参数一起使用,这些参数可以是任意表达式。例如

    #[derive(Error, Debug)]
    pub enum Error {
        #[error("invalid rdo_lookahead_frames {0} (expected < {})", i32::MAX)]
        InvalidLookahead(u32),
    }
    

    如果其中一个附加表达式参数需要引用结构体或枚举的字段,那么可以像这样引用命名字段:.var 和元组字段:.0

    #[derive(Error, Debug)]
    pub enum Error {
        #[error("first letter must be lowercase but was {:?}", first_char(.0))]
        WrongCase(String),
        #[error("invalid index {idx}, expected at least {} and at most {}", .limits.lo, .limits.hi)]
        OutOfBounds { idx: usize, limits: Limits },
    }
    
  • 为包含 #[from] 属性的每个变体生成一个 From 实现。

    注意,变体必须不包含除源错误和可能的回溯之外的其他字段。如果存在该字段,则从 From 实现中捕获回溯。

    #[derive(Error, Debug)]
    pub enum MyError {
        Io {
            #[from]
            source: io::Error,
            backtrace: Backtrace,
        },
    }
    
  • 实现了 Error 特性的 source() 方法,以返回具有 #[source] 属性或名称为 source 的任何字段,如果有的话。这是为了识别导致您错误的底层错误。

    #[from] 属性始终意味着相同的字段是 #[source],因此您永远不需要指定这两个属性。

    任何实现了 std::error::Error 或是 dyn std::error::Error 的错误类型都将作为源工作。

    #[derive(Error, Debug)]
    pub struct MyError {
        msg: String,
        #[source]  // optional if field name is `source`
        source: anyhow::Error,
    }
    
  • 错误特质的 provide() 方法被实现,以提供任何名为 Backtrace 的字段类型,如果有,则作为 std::backtrace::Backtrace

    use std::backtrace::Backtrace;
    
    #[derive(Error, Debug)]
    pub struct MyError {
        msg: String,
        backtrace: Backtrace,  // automatically detected
    }
    
  • 如果一个字段既是源(命名为 source,或具有 #[source]#[from] 属性)并且被标记为 #[backtrace],那么错误特质的 provide() 方法会被转发到源对象的 provide 方法,以便错误的两层都能够共享相同的回溯。

    #[derive(Error, Debug)]
    pub enum MyError {
        Io {
            #[backtrace]
            source: io::Error,
        },
    }
    
  • 错误可以使用 error(transparent) 来直接将源和显示方法转发到底层错误,而不添加额外的消息。这适用于需要 "其他" 变体的枚举。

    #[derive(Error, Debug)]
    pub enum MyError {
        ...
    
        #[error(transparent)]
        Other(#[from] anyhow::Error),  // source and Display delegate to anyhow::Error
    }
    

    另一个用例是在不破坏 crate 的公共 API 的情况下,隐藏错误表示的实现细节,从而使表示能够演进。

    // PublicError is public, but opaque and easy to keep compatible.
    #[derive(Error, Debug)]
    #[error(transparent)]
    pub struct PublicError(#[from] ErrorRepr);
    
    impl PublicError {
        // Accessors for anything we do want to expose publicly.
    }
    
    // Private and free to change across minor version of the crate.
    #[derive(Error, Debug)]
    enum ErrorRepr {
        ...
    }
    
  • 有关在应用程序代码中使用方便的单个错误类型,请参阅 anyhow 库。


与 anyway 的比较

如果您关心设计自己的专用错误类型,以便在失败时调用者能够接收到您选择的确切信息,请使用 thiserror。这通常适用于类似库的代码。如果您不关心函数返回什么错误类型,只是想让它变得简单,请使用 Anyhow。这通常适用于类似应用程序的代码。


许可证

根据您的选择,许可协议为 Apache License, Version 2.0MIT license
除非您明确表示,否则,您提交给此 crate 的任何有意贡献,根据 Apache-2.0 许可证定义,均将根据上述条款进行双重许可,而无需附加条款或条件。

依赖项

~305–760KB
~18K SLoC