MCPcopy Create free account
hub / github.com/derekbanas/Rust-Tutorial / Day

Enum Day

main.rs:464–472  ·  view source on GitHub ↗

Create an Enum for days of week

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected