diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-03-27 15:32:37 -0400 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-03-27 15:32:37 -0400 |
commit | 67cdcc2e12118becb823e20a40cc2687f2b8425a (patch) | |
tree | ed92c3234b89079e6d4cf36f5e80c5ffa79def48 /rust-book/enums | |
parent | e25482fca375d318a39c3b54db396b0db6e0b263 (diff) | |
download | learning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.tar.xz learning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.zip |
Started Rust in Action MEAP.
Diffstat (limited to 'rust-book/enums')
-rwxr-xr-x | rust-book/enums/Cargo.lock | 4 | ||||
-rwxr-xr-x | rust-book/enums/Cargo.toml | 7 | ||||
-rwxr-xr-x | rust-book/enums/src/main.rs | 12 | ||||
-rwxr-xr-x | rust-book/enums/src/main1.rs | 48 |
4 files changed, 71 insertions, 0 deletions
diff --git a/rust-book/enums/Cargo.lock b/rust-book/enums/Cargo.lock new file mode 100755 index 0000000..d3577dd --- /dev/null +++ b/rust-book/enums/Cargo.lock @@ -0,0 +1,4 @@ +[[package]] +name = "enums" +version = "0.1.0" + diff --git a/rust-book/enums/Cargo.toml b/rust-book/enums/Cargo.toml new file mode 100755 index 0000000..99fb9fc --- /dev/null +++ b/rust-book/enums/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "enums" +version = "0.1.0" +authors = ["Adam Carpenter <carpenat@ES.AD.ADP.COM>"] +edition = "2018" + +[dependencies] diff --git a/rust-book/enums/src/main.rs b/rust-book/enums/src/main.rs new file mode 100755 index 0000000..b8c61de --- /dev/null +++ b/rust-book/enums/src/main.rs @@ -0,0 +1,12 @@ +fn main() { + let some_u8_value = Some(3u8); +// match some_u8_value { +// Some(3) => println!("three"), +// _ => (), +// } + + if let Some(3) = some_u8_value { + println!("three"); + } + +} diff --git a/rust-book/enums/src/main1.rs b/rust-book/enums/src/main1.rs new file mode 100755 index 0000000..9670693 --- /dev/null +++ b/rust-book/enums/src/main1.rs @@ -0,0 +1,48 @@ +#[derive(Debug)] +enum UsState { + NY, + VA, + NC, +} + +enum Coin { + Penny, + Nickel, + Dime, + Quarter(UsState), +} + +impl Coin { + + fn value_in_cents(self) -> u32 { + + match self { + Coin::Penny => { + println!("lucky penny"); + 1 + }, + Coin::Nickel => 5, + Coin::Dime => 10, + Coin::Quarter(state) => { + println!("State quarter from {:?}", state); + 25 + }, + + } + + } +} + +fn plus_one(x: Option<i32>) -> Option<i32> { + + match x { + None => None, + Some(i) => Some(i + 1), + } +} + +fn main() { + let five = Some(5); + let six = plus_one(five); + let none = plus_one(None); +} |