Alternative Error
for Rust.
It's goal is to be able to provide simplified Error
which would work in no_std
environment
alloc
- Crate uses allocator to create dynamic message, when necessary (Only System
category uses heap on Windows).std
- enables std::error::Error
implementationufmt
- enables ufmt
formatting implementationLibrary introduces the concept of categories, similar to that of C++ std::error_category
.
Each category can be used to describe set of integral error codes.
Following implementations are builtin: