Dawid Ciężarkiewicz

Results 459 comments of Dawid Ciężarkiewicz

> I don't follow what setters and builders would allow you to do that setting the fields directly does not. They would allow writing this: ```rust let pod_spec = PodSpec::default()...

It doesn't compose well. ``` let pod_spec = PodSpec::default() .set_restart_policy("Always") .append_container(get_default_node_js_container_spec()) ``` vs ... ``` let mut pod_spec = PodSpec::default(); pod_spec.restart_policy = "Always".to_string(); pod_spec.container.push(get_default_node_js_container_spec()); ``` ? It's not a huge...

I'm trying to design some form of Rust quasi-DSL, that could be used as a helm replacement for the end user to specify a configuration in. As is RN, it's...

I really need this functionality now, so I'm working on it in #120 . I still need to improve on it. Hopefully I can get it landed behind a cfg...

I'm kicking the tires of the PR I've opened. Some thoughts and code samples: https://github.com/rustshop/rustshop/discussions/12

I don't think I'll be able to do much myself, but I would be happy to provide help. Please try pinging me on gitter channel and we can have a...

`Ctrl-D` or `Ctrl-C` produce either a signal like @Kintaro said, or just some combination of keys. `handle_char` should be a proper state machine and detect such conditions, and make the...

So the EOF thing is about ending the Stream (by returning `None`) on `ret == 0` . Plus on `Ctrl+D` or something like it. Right now it's necessary to kill...

Yeap. I don't even have a Windows box to actually do it. But fundamentally, there is nothing preventing it and it should be quite easy.