Paul Woolcock
Paul Woolcock
@biot023 yes, just like the various `format!`, `write!`, and `log` crate macros, you'll need to have a format string where the error message indicates. If the `format!` call you are...
@ar3s3ru thanks! sorry I didn't respond to this thread earlier, but I'm definitely still interested in doing this and I appreciate the pointers and the reference!
Ok, initial thoughts, in no particular order: * Sled keys/values are all just bytes, so I'm planning on using serde + bincode instead of serde_json, in order to save some...
@ar3s3ru quick question: I'm hoping to have a POC of this soon, should I open a PR and try to get it in-tree or should I just keep in my...
this, for sure. I'm of the opinion that any kind of social platform that doesn't incorporate mod tools from the start, is just asking for trouble
Just curious, why is `--ignore-tests` not the default? Are people really writing tests for their tests? I can't imagine a situation where I'd want my test code to be counted...
Sorry if I should have taken this to the stdlib first, but given > if your feature involves heap allocation, such as storing elements in a Vec, then it can't...
two things I'm unhappy with: 1. `type Item = Vec`. I wish that could be `type Item = &'a [T]`, but then I run into the problem of tying `'a`...
@phimuemue thanks, I'm looking into that right now and I'll update here when I can
It allows you to manipulate location information for log messages in the same way that you can for `panic!` messages. For example, one of my applications has a generic "retry-er"...