Create an Enum for days of week
| 462 | |
| 463 | // Create an Enum for days of week |
| 464 | enum Day { |
| 465 | Monday, |
| 466 | Tuesday, |
| 467 | Wednesday, |
| 468 | Thursday, |
| 469 | Friday, |
| 470 | Saturday, |
| 471 | Sunday |
| 472 | } |
| 473 | |
| 474 | // Define function for Day enum |
| 475 | impl Day { |
nothing calls this directly
no outgoing calls
no test coverage detected