| 54 | |
| 55 | #[derive(Serialize, Deserialize, Clone, Debug)] |
| 56 | struct User2 { |
| 57 | fullname: String, |
| 58 | age: i32 |
| 59 | } |
| 60 | |
| 61 | impl User2 { |
| 62 | pub fn new(fullname: String, age: i32) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected