Gabriel
Gabriel
> Is there any way to enforce adding a ctx! invocation easily? Yeah, I definitely agree having some kind of compile time enforcement for calling `ctx!` would be nice. I...
Right now I'm leaning on `anyhow`, which gives us access to backtraces or manually tracing using `.with_context(...)`. It's easy to implement `From` for our custom error type in `crate::error::Error`, but...
I definitely see the value in implementing `Clone`, but I agree with the suggestion that this should wrap the Configuration struct in an `Arc` internally. `Clone` will be more performant...