| 2 | |
| 3 | #[derive(Debug, Deserialize, Serialize)] |
| 4 | struct Person { |
| 5 | name: String, |
| 6 | age: usize, |
| 7 | job: Option<String>, |
| 8 | verified: bool, |
| 9 | parents: Vec<String>, |
| 10 | } |
| 11 | |
| 12 | fn main() { |
| 13 | let bob = Person { |
nothing calls this directly
no outgoing calls
no test coverage detected