(self: Person)
| 7 | } |
| 8 | impl Person { |
| 9 | fn naming(self: Person) -> String { |
| 10 | format!("{} {}", |
| 11 | self.personal_names, |
| 12 | self.family_names) |
| 13 | } |
| 14 | } |
| 15 | let person = Person { |
| 16 | personal_names: "John".to_string(), |
nothing calls this directly
no outgoing calls
no test coverage detected