What's up with: ```.compat() .to_boxed() .map_err(...
# development
e
What's up with:
Copy code
.compat()
.to_boxed()
.map_err(...)
.to_boxed()
Vs using:
Copy code
.compat()
.map_err(...)
.to_boxed()