| 29 | |
| 30 | #[derive(Deserialize)] |
| 31 | pub struct Marriage { |
| 32 | pub married: bool, |
| 33 | pub children: Option<usize>, |
| 34 | pub spouse_name: Option<String>, |
| 35 | } |
| 36 | |
| 37 | impl std::fmt::Display for Data { |
| 38 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected