abrasion/third_party/cargo/vendor/quick-error-1.2.3
q3k 4a50bbf00d third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02:00
..
examples vendor all the shit. 2020-01-19 00:27:25 +01:00
src vendor all the shit. 2020-01-19 00:27:25 +01:00
.cargo-checksum.json third_party/cargo: add flatbuffers, bump 2020-05-29 03:43:49 +02:00
BUILD.bazel third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02:00
Cargo.lock third_party/cargo: add flatbuffers, bump 2020-05-29 03:43:49 +02:00
Cargo.toml vendor all the shit. 2020-01-19 00:27:25 +01:00
LICENSE-APACHE vendor all the shit. 2020-01-19 00:27:25 +01:00
LICENSE-MIT vendor all the shit. 2020-01-19 00:27:25 +01:00
README.rst vendor all the shit. 2020-01-19 00:27:25 +01:00
bulk.yaml vendor all the shit. 2020-01-19 00:27:25 +01:00
vagga.yaml vendor all the shit. 2020-01-19 00:27:25 +01:00

README.rst

===========
Quick Error
===========

:Status: production-ready
:Documentation: http://tailhook.github.io/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:

.. code-block:: rust

    quick_error! {
        #[derive(Debug)]
        pub enum IoWrapper {
            Io(err: io::Error) {
                from()
                display("I/O error: {}", err)
                cause(err)
            }
            Other(descr: &'static str) {
                display("Error {}", descr)
            }
            IoAt { place: &'static str, err: io::Error } {
                cause(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

 * Apache License, Version 2.0, (./LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
 * MIT license (./LICENSE-MIT or http://opensource.org/licenses/MIT)

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.