Purpose

This is a proof of concept of project aiming at implementing "checked exception" like error handling in Rust via proc-macro.

It is based on enumx crate. See ../enumx/README.md for more.

Naming

It provides CeX structures, that is read as "Concrete Error Exchange" or "Checked EXception", at your will.

A CeX is essentially a composition of EnumX for exchange, and a Backtrace for stack backtracing.

CeXes composed of x errors are named as Ce1, Ce2, ... etc.

type converting rules:

  1. Each error type in a CeX is convertable to this CeX.

  2. An CeX T is convertable to another CeX U if all errors in T are in U.

Inside a function with #[cex] attribute and returning Result<_,CeX<_,...>, the code can return or try(?) any type that is convertable to the CeX type in the Err part of the function result type.

However, explicit ? or return are required.

If you do not want backtracing, just use Result<_,EnumX<_,...> instead.

Examples

Limitation

License

Licensed under MIT.