-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenum.rs
More file actions
105 lines (99 loc) · 2.38 KB
/
Copy pathenum.rs
File metadata and controls
105 lines (99 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// enum
// used to create custom data type have different values and properties
#![allow(dead_code)] // allow dead code
enum Color {
Red,
Green,
Blue,
RgbColor(u8, u8, u8), // tuple
CmykColor {
cyan: u8,
magenta: u8,
yellow: u8,
black: u8,
}, // struct
}
enum Number {
Zero,
One,
Two,
}
enum Olor {
Red = 0xff0000,
Green = 0x00ff00,
Blue = 0x0000ff,
}
// match expression is used to match the value of enum with the pattern and execute the code block associated with that pattern
#[derive(Debug)]
enum GenderCategory {
Male,
Female,
Other,
}
#[derive(Debug)] // derive is used to print the struct
struct Persion {
name: String,
gender: GenderCategory,
}
fn persio() {
let p1 = Persion {
name: String::from("Usamn Abxc"),
gender: GenderCategory::Male,
};
let p2 = Persion {
name: String::from("Alexia"),
gender: GenderCategory::Female,
};
println!("Persion 1 is {:?}", p1);
println!("Persion 2 is {:?}", p2);
}
// match works like switch case
fn match_case() {
let number = 4555;
println!("Number is {}", number);
match number {
1 => println!("One"),
2|3|5|7|11 => println!("Prime"),
13..=19 => println!("Teen"),
_ => println!("Not match"),
}
let boolen = true;
let binary = match boolen {
false => 0,
true => 1,
};
println!("Binary is {}", binary);
}
fn main() {
let c: Color = Color::Red;
match c {
// match expression
Color::Red => println!("Red"),
Color::Green => println!("Green"),
Color::Blue => println!("Blue"),
Color::RgbColor(0, 0, 0) => println!("Black"),
Color::RgbColor(0, 0, 255) => println!("Blue"),
Color::CmykColor {
cyan: _,
magenta: _,
yellow: _,
black: 255,
} => println!("Black"),
_ => println!("Not match"),
}
let n: Number = Number::One;
match n {
Number::Zero => println!("Zero"),
Number::One => println!("One"),
Number::Two => println!("Two"),
}
let o: Olor = Olor::Blue;
match o {
Olor::Red => println!("Red"),
Olor::Green => println!("Green"),
Olor::Blue => println!("Blue"),
}
println!("zero is {}", Number::Zero as i32);
persio();
match_case();
}