error-enum-core 1.0.0-alpha.6

Provide a easy way to define an enum that represents errors with error codes, document comments and several other functionalities.
Documentation
1
2
3
4
5
//! Tests for the [`Indexer`] implementations.
use error_enum_core::{ErrorType, SimpleSpan};

#[expect(dead_code)]
fn dyn_compatibility(_: Box<dyn ErrorType<Span = SimpleSpan, Message = String>>) {}