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 It is Result by itself or maybe the Error variant is too "heavy"?
@pitbuster not sure, it's just an enum with a few numbers, using thiserror.
@cas hmm, it sounds it shouldn't be much of a problem then :(