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

#723 in Rust patterns

Download history 466085/week @ 2023-11-20 552015/week @ 2023-11-27 551260/week @ 2023-12-04 588760/week @ 2023-12-11 484054/week @ 2023-12-18 245463/week @ 2023-12-25 459453/week @ 2024-01-01 581905/week @ 2024-01-08 567318/week @ 2024-01-15 593685/week @ 2024-01-22 635849/week @ 2024-01-29 615873/week @ 2024-02-05 642500/week @ 2024-02-12 593835/week @ 2024-02-19 642195/week @ 2024-02-26 620870/week @ 2024-03-04

2,534,607 downloads per month
Used in fewer than 294 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