Returns a custom user collection.
()
| 6 | impl UserCollection { |
| 7 | /// Returns a custom user collection. |
| 8 | pub fn new() -> Self { |
| 9 | Self { |
| 10 | users: ["Alice", "Bob", "Carl"], |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | /// Returns an iterator over a user collection. |
| 15 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected