Serhii Potapov
Serhii Potapov
Wait until https://github.com/dtolnay/quote/issues/268 is resolved. If `ToTokens` is implemented for NonZero integers, supporting NonZero types will be quite cheap.
# Description It might look like #80, but I use Qt 4.8.2. Attempt to run `jasmine-headless-webkit` fails with the next error message: ``` $ jasmine-headless-webkit No runner found, attempting to...
Fixes https://github.com/greyblake/nutype/issues/161 TODO: * [x] Functionality * [ ] Tests * [ ] Documentation * [ ] README * [ ] lib.rs * [ ] CHANGELOG
## Context Some orgs and people are not quite happy with auto-generated error types, e.g. it's not possible to customize them, inject extra details, etc. ## Requirement Provide a way...
At the moment boundaries can be set only within ``, it's not possible to set boundaries with `where` clause. One particular usecase where it would be helpful is this one:...
Rust 1.81.0 stabilizes `core::error::Error`: https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html#whats-in-1810-stable With that we should able to remove the condition here: https://github.com/greyblake/nutype/blob/master/nutype_macros/src/common/gen/error.rs#L14-L31 And generate `core::error::Error` instead of `::std::error::Error`. Since it's a breaking (the older versions of...
See resources: * https://www.reddit.com/r/rust/comments/1f81d2v/comment/llcayj8/ * https://elastio.github.io/bon/blog/bon-builder-generator-v2-release#experimental-completions-with-rust-analyzer * https://blog.emi0x7d1.dev/improving-autocompletion-in-your-rust-macros/
It fixes https://github.com/cloudhead/nonempty/issues/68 I hope using `vec![]` should not be a big problem, cause `vec![]` is already used in another branch of the macro. Thank you again for you work!
First of all, thank you for a really great crate! It makes my life better. I ran into a tiny bug that I want to report here. ```rs use nonempty::nonempty;...