Vegard Sandengen

Results 3 comments of Vegard Sandengen

Since I rely upon writing toml tables as well as parsing them, I would rather have them outputted in insertion order than random order.

Ahh, I'm quite forgetfull. I played around with insertion order on my local fork instead. I must have mixed up my experiences and memories regarding the matter.

I encounter the same issue when using `#[serde(other)]` for the externally tagged enum, e.g.,: ```rust #[derive(Deserialize, Debug)] enum SomeEnum { A(u32), B(u32), #[serde(other)] C, } #[derive(Deserialize, Debug)] struct SomeStruct {...