Vitalii Kryvenko
Vitalii Kryvenko
I see, the problem is more clear to me now. The approach of `to_updated()` method requires generating a separate builder, which is likely to double the cost of compilation times....
Yeah, the naming is hard here. I think `build_from` sounds a bit better than `build_with/patch_with`, so let's settle with that for now (I'm almost sure we'll change the name anyway)....
Hi! If you don't need to instantiate a struct, then you can avoid using a struct to derive the builder, and use function-based syntax which basically gives a custom finishing...
> so got intermediate struct. can it be avoided I don't think so, because `#[derive(Builder)]` creates a builder for a struct (as this is the main idea of deriving a...
Hi! Thank you for reporting this. This one's quite difficult to fix. I expanded the macro code (like shown in the [troubleshooting demo](https://bon-rs.com/guide/troubleshooting)) and tried to move the `where` bounds...
Also, a workaround - if you temporarily remove the final `call()` method - you'll get a nice error ``` error[E0308]: mismatched types --> crates/sandbox/src/main.rs:14:5 | 14 | f::(paths); // .call()...
Hi. The idea sounds good on the first glance, however I'm not sure it's worth the added complexity. The are several concerns that I have. First, there is a big...
Hi! I think the API that you want (i.e. `extra::().fetch()` or just `fetch()` with a default generic param) can be achieved using stable `bon`'s features this way: ```rust use std::marker::PhantomData;...
PCI DSS compliance requires tagging IAM managed policies. We can't do that with CFN. Forget compliance, the people who designed it are disconnected from the reality of CFN👍
Hey, I found this issue [thanks to Reddit](https://www.reddit.com/r/rust/comments/1956uw9/official_setuprust_github_action/). I suggested there to consider moving [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain) under the official `rust-lang` org, so that it could get more attention. I wonder what...