1
0
Fork
You've already forked thiserror
0
derive(Error) for struct and enum error types
Rust 100%
Find a file
David Tolnay a37b5ab11f
Resolve needless_borrow clippy lints
error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
 --> impl/src/prop.rs:68:25
 |
 68 | return Some(&field);
 | ^^^^^^ help: change this to: `field`
 |
 = note: `-D clippy::needless-borrow` implied by `-D clippy::all`
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
 error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
 --> impl/src/prop.rs:77:25
 |
 77 | return Some(&field);
 | ^^^^^^ help: change this to: `field`
 |
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
 error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
 --> impl/src/prop.rs:82:70
 |
 82 | Member::Named(ident) if ident == "source" => return Some(&field),
 | ^^^^^^ help: change this to: `field`
 |
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
 error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
 --> impl/src/prop.rs:92:25
 |
 92 | return Some(&field);
 | ^^^^^^ help: change this to: `field`
 |
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
 error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
 --> impl/src/prop.rs:97:25
 |
 97 | return Some(&field);
 | ^^^^^^ help: change this to: `field`
 |
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
 error: this expression borrows a reference (`&syn::Type`) that is immediately dereferenced by the compiler
 --> impl/src/valid.rs:191:41
 |
 191 | if contains_non_static_lifetime(&source_field.ty) {
 | ^^^^^^^^^^^^^^^^ help: change this to: `source_field.ty`
 |
 = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow 
2021年06月04日 19:49:18 -07:00
.github/workflows Fix catching clippy warnings as CI failures 2021年01月04日 23:52:19 -08:00
impl Resolve needless_borrow clippy lints 2021年06月04日 19:49:18 -07:00
src Support non-static AsDynError lifetimes 2021年05月22日 14:29:11 -07:00
tests Delete broken #[deprecated] test 2021年06月03日 21:33:27 -07:00
.clippy.toml Inform clippy of supported compiler version in clippy.toml 2020年12月29日 16:23:19 -08:00
.gitignore Initial commit 2019年10月08日 23:18:38 -07:00
Cargo.toml Release 1.0.25 2021年05月22日 14:33:15 -07:00
LICENSE-APACHE Dual mit OR apache license 2019年10月08日 23:19:49 -07:00
LICENSE-MIT Dual mit OR apache license 2019年10月08日 23:19:49 -07:00
README.md Use i32::MAX instead of i32::max_value() 2020年11月20日 20:33:49 +01:00

derive(Error)

github crates.io docs.rs build status

This library provides a convenient derive macro for the standard library's std::error::Error trait.

[dependencies]
thiserror = "1.0"

Compiler support: requires rustc 1.31+


Example

usethiserror::Error;#[derive(Error, Debug)]pubenum 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,}

Details

  • Thiserror deliberately does not appear in your public API. You get the same thing as if you had written an implementation of std::error::Error by hand, and switching from handwritten impls to thiserror or vice versa is not a breaking change.

  • Errors may be enums, structs with named fields, tuple structs, or unit structs.

  • A Display impl is generated for your error if you provide #[error("...")] messages on the struct or each variant of your enum, as shown above in the example.

    The messages support a shorthand for interpolating fields from the error.

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

    These shorthands can be used together with any additional format args, which may be arbitrary expressions. For example:

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

    If one of the additional expression arguments needs to refer to a field of the struct or enum, then refer to named fields as .var and tuple fields as .0.

    #[derive(Error, Debug)]pubenum 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},}
  • A From impl is generated for each variant containing a #[from] attribute.

    Note that the variant must not contain any other fields beyond the source error and possibly a backtrace. A backtrace is captured from within the From impl if there is a field for it.

    #[derive(Error, Debug)]pubenum MyError{Io{#[from]source: io::Error,backtrace: Backtrace,},}
  • The Error trait's source() method is implemented to return whichever field has a #[source] attribute or is named source, if any. This is for identifying the underlying lower level error that caused your error.

    The #[from] attribute always implies that the same field is #[source], so you don't ever need to specify both attributes.

    Any error type that implements std::error::Error or dereferences to dyn std::error::Error will work as a source.

    #[derive(Error, Debug)]pubstruct MyError{msg: String,#[source]// optional if field name is `source`
    source: anyhow::Error,}
  • The Error trait's backtrace() method is implemented to return whichever field has a type named Backtrace, if any.

    usestd::backtrace::Backtrace;#[derive(Error, Debug)]pubstruct MyError{msg: String,backtrace: Backtrace,// automatically detected
    }
  • Errors may use error(transparent) to forward the source and Display methods straight through to an underlying error without adding an additional message. This would be appropriate for enums that need an "anything else" variant.

    #[derive(Error, Debug)]pubenum MyError{...#[error(transparent)]Other(#[from]anyhow::Error),// source and Display delegate to anyhow::Error
    }
  • See also the anyhow library for a convenient single error type to use in application code.


Comparison to anyhow

Use thiserror if you care about designing your own dedicated error type(s) so that the caller receives exactly the information that you choose in the event of failure. This most often applies to library-like code. Use Anyhow if you don't care what error type your functions return, you just want it to be easy. This is common in application-like code.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.