(&self)
| 61 | } |
| 62 | impl CompSciStudent for SuperCompSciStudent { |
| 63 | fn git_username(&self) -> String { |
| 64 | self.0.to_lowercase() |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | fn comp_sci_student_greeting(student: &dyn CompSciStudent) -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected