16 releases (8 stable)

2.0.1 May 7, 2021
2.0.0 Aug 11, 2020
1.2.3 Jan 2, 2020
1.2.2 May 26, 2018
0.1.4 Oct 17, 2015

#412 in Rust patterns

Download history 763059/week @ 2024-07-21 712566/week @ 2024-07-28 711519/week @ 2024-08-04 781577/week @ 2024-08-11 794056/week @ 2024-08-18 781135/week @ 2024-08-25 775053/week @ 2024-09-01 802904/week @ 2024-09-08 739949/week @ 2024-09-15 816108/week @ 2024-09-22 826076/week @ 2024-09-29 899972/week @ 2024-10-06 872877/week @ 2024-10-13 908436/week @ 2024-10-20 875975/week @ 2024-10-27 838022/week @ 2024-11-03

3,539,713 downloads per month
Used in fewer than 295 crates

MIT/Apache

49KB
962 lines

Quick Error

Status:production-ready
Documentation:https://docs.rs/quick-error/

A macro which makes error types pleasant to write.

Features:

  • Define enum type with arbitrary parameters
  • Concise notation of Display and Error traits
  • Full control of Display and Error trait implementation
  • Any number of From traits
  • Support for all enum-variants Unit, Tuple and Struct

Here is the comprehensive example:

quick_error! {
    #[derive(Debug)]
    pub enum IoWrapper {
        Io(err: io::Error) {
            from()
            display("I/O error: {}", err)
            source(err)
        }
        Other(descr: &'static str) {
            display("Error {}", descr)
        }
        IoAt { place: &'static str, err: io::Error } {
            source(err)
            display(me) -> ("io error at {}: {}", place, err)
            from(s: String) -> {
                place: "some string",
                err: io::Error::new(io::ErrorKind::Other, s)
            }
        }
        Discard {
            from(&'static str)
        }
    }
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps