|
31 | ["faq"]
| ^^^^^^^
= note: expected enum `Option<Vec<String>>`
found array `[&str; 1]` ➌
note: associated function defined here
--> src/main.rs:11:8
|
11 | fn new(
| ^^^
12 | id: QuestionId,
| --------------
13 | title: String,
| -------------
14 | content: String,
| ---------------
15 | tags: Option<Vec<String>>
| -------------------------
help: try using a conversion method
|
29 | "First Question".to_string(),
| ++++++++++++
help: try using a conversion method