()
| 23 | } |
| 24 | |
| 25 | fn main() -> Result<()> { |
| 26 | let users = vec![ |
| 27 | User { |
| 28 | id: 1, |
| 29 | first_name: "Scooby", |
| 30 | last_name: "Doo".to_string(), |
| 31 | }, |
| 32 | User { |
| 33 | id: 2, |
| 34 | first_name: "John", |
| 35 | last_name: "Cena".to_string(), |
| 36 | }, |
| 37 | ]; |
| 38 | |
| 39 | print_stdout(users.with_title()) |
| 40 | } |
nothing calls this directly
no test coverage detected