The source code to get the integer value of enum constants is given below. The given program is compiled and executed successfully.
// Rust program to get the integer value
// of enum constants
#[derive(Debug)]
enum Gender {
female,male
}
fn main() {
println!("Male: {:?}", Gender::male as i32);
println!("Female: {:?}", Gender::female as i32);
}
Output:
Male: 1
Female: 0
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 converted the enum constants into integers and printed the result.
Program/Source Code:
The source code to get the integer value of enum constants is given below. The given program is compiled and executed successfully.
Output:
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 converted the enum constants into integers and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer