Juniper Tyree

Results 292 comments of Juniper Tyree

❤️🦀❤️

> Hi @MomoLangenstein, we are planning to work on a fix for this issue soon. Tracked as ANE-139 internally. That’s awesome, thanks!

> Is this going to allow sending from a `MaybeUninit`, not just receiving into? Hmmm, good point. I only want to allow receiving into it, not sending from it. Would...

In my use case, I previously wrote something akin to: ```rust let receive_start = receiving_buffer.len(); #[allow(clippy::uninit_vec)] // Safety: The uninitialised `number_items` items are initialised in the // following `matched_receive_into` call...

I've been thinking about the `ron` `Value` for a few days and wanted to summarise my thoughts: - the `Value` type should be extended to be more like a `ron`...

@torkleyy thoughts?

> Yeah I'm also unsure what drawbacks this hack might have. I think there always will be some limitations when using RON + serde (which is the only option today),...

Re untagged enums: https://github.com/ron-rs/ron/compare/master...JuniperLangenstein:253-untagged-enums

I also just thought of something else: in that prototype branch I made a while ago, struct-like things were deserialised as single-item maps into `Value`. This allows us to do...

@torkleyy This is mostly an old experiment that I just rebased, but I wanted to see what would need to be done to make this feel right. Essentially, we could...