Working on a lil pet project in rust rn and discovered that using Result in the hot path is significantly affecting performance, how do people deal with this?
@cas afaik this is well known and the main reason to use exceptions over a Result-like mechanism, Rust decided the simpler correctness guarantees were more important than performance