Crate arcerror

source ·
Expand description

Provides thin wrappers around Arc<T> and Rc<T> where T: Error. Impls Error for both of these types. No unsafe, no dependencies.

The purpose of this is to impl Clone for arbitrary Error types that don’t already have such an implementation. The use case that drove it was for an HTTP server that was making an HTTP request for large files through a third-party wrapper around an API, and streaming the response to both a File on the local filesystem and to our own HTTP response concurrently, through a broadcast channel.

A network stream can fail at any time, so every “chunk” is returned in a Result; the third-party wrapper crate didn’t impl Clone on its error type (and many of the errors it was) wrapping also don’t impl Clone). This is a solution to making that Result impl Clone.

Structs

  • A thin wrapper around Arc to provide Clone to error types that don’t already impl Clone, while maintaining Send + Sync
  • A thin wrapper around Rc to provide Clone to error types that don’t already impl Clone