| 13 | let greeting = Text::from("Hello"); |
| 14 | greeting.draw(); |
| 15 | struct BoxedText { |
| 16 | text: Text, |
| 17 | first: char, |
| 18 | last: char, |
| 19 | } |
| 20 | impl BoxedText { |
| 21 | fn with_text_and_borders( |
| 22 | text: &str, first: char, last: char) |
nothing calls this directly
no outgoing calls
no test coverage detected