#derive-error #thiserror #enums #detail #struct #requires #io-error

无标准库 miden-thiserror-impl

无标准库支持的 thiserror 库的实现细节

1 个稳定版本

1.0.59 2024年8月7日

#26 in #thiserror

Download history 200/week @ 2024-08-04 579/week @ 2024-08-11 812/week @ 2024-08-18

1,591 每月下载量
10 个crate中使用 (通过 miden-thiserror)

MIT/Apache

59KB
1.5K SLoC

derive(Error)

github crates.io docs.rs build status

此库提供了一种方便的 derive 宏,用于标准库的 std::error::Error trait。

[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 或反之不是破坏性变更。

  • 错误可以是枚举、具有命名字段的 structs、元组 structs 或 unit structs。

  • 如果你在 struct 或枚举的每个变体上提供了 #[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


与anyhow的比较

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


许可证

根据您的选择,受 Apache License, Version 2.0MIT 许可证 许可。
除非您明确说明,否则您有意提交给此crate的贡献,根据Apache-2.0许可证定义,将根据上述内容双许可,没有任何附加条款或条件。

依赖关系

~270–720KB
~17K SLoC