(&self)
| 27 | impl Person for RustProgrammer {} |
| 28 | impl Programmer for RustProgrammer { |
| 29 | fn fav_language(&self) -> String { |
| 30 | String::from("Rust") |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | impl Programmer for ArtificialProgrammer { |
nothing calls this directly
no outgoing calls
no test coverage detected