...后用对用户友好的方式输出响应。
### 创建项目
```bash
~ via 🅒 base
➜ cd Code/rust
~/Code/rust via 🅒 base
➜ cargo new httpie
Created binary (application) `httpie` package
~/Code/rust via 🅒 base
➜ cd httpie
httpie on master [?] via 🦀 1.88...
...数据类型。在第一个示例中,我们定义了一个简单的 Message 枚举,其中包含了 Quit、Echo、Move 和 ChangeColor 变体。
```rust
// enums1.rs
//
// No hints this time! ;)
// I AM NOT DONE
#[derive(Debug)]
enum Message {
// TODO: define a few types of mess...