Clifford Ressel
Clifford Ressel
Running macOS 10.13.3, node v6.14.2, fb-messenger-cli 2.0.2 Steps to reproduce: Copy and paste triple newline-separated text into the terminal, such as the below: ``` A B C D ``` Expected:...
Related to (open): https://github.com/serde-rs/serde/issues/2197 And related to (closed): https://github.com/serde-rs/serde/issues/1161 ## Models ```rust #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] #[serde(tag = "type")] pub enum Direction { #[serde(rename="left")] Left(Box), #[serde(rename="right")] Right(Box), } #[derive(Clone,...