The current implementation almost always uses anyhow::Error. "Effective Rust" says I should enum-based errors to make the error structure clearer (https://www.lurklurk.org/effective-rust/errors.html). I'll follow this suggestion and replace anyhow::Error s with enum-based errors.
The current implementation almost always uses anyhow::Error. "Effective Rust" says I should enum-based errors to make the error structure clearer (https://www.lurklurk.org/effective-rust/errors.html). I'll follow this suggestion and replace
anyhow::Error
s with enum-based errors.