Q:

Rust program to create a simple enum

belongs to collection: Rust Enums Programs

0

In this program, we will create an enum with two constants. Then we will access the enum constant and print them.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a simple enum is given below. The given program is compiled and executed successfully.

// Rust program to create 
// a simple enum

#[derive(Debug)]

enum Gender {
   female,male
}

fn main() {
   let male   = Gender::male;
   let female = Gender::female;

   println!("{:?}",male);
   println!("{:?}",female);
}

Output:

male
female

Explanation:

In the above program, we created an enum Gender and function main(). The enum Gender contains two constants female and male.

In the main() function, we accessed the value of enum constants and printed them.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust program to get the integer value of enum cons... >>