This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:14_5_2022 [2022/05/14 19:38] root |
devlogs:14_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 6: | Line 6: | ||
==== Structs ==== | ==== Structs ==== | ||
- | Structs hold a bunch of values like tuples. But a struct will have each piece of data named ie: **__key: | + | Structs hold a bunch of values like tuples. But a struct will have each piece of data named ie: **__key: |
<code rust> | <code rust> | ||
Line 13: | Line 13: | ||
| | ||
| | ||
- | //I DONT THING YOU CAN NEST ENUMS..... lmk bois | + | //I DONT THINK YOU CAN NEST ENUMS..... lmk bois |
} | } | ||
</ | </ | ||
Line 37: | Line 37: | ||
} | } | ||
</ | </ | ||
- | david is the same as dave except for his name! ((please note that this is true only on a surface level, as when we dive deeper we will find david and dave to be exeptionally unique ducks. Just like anyone. we are more than just our **__key: | + | david is the same as dave except for his name! ((please note that this is true only on a surface level, as when we dive deeper we will find david and dave to be exeptionally unique ducks. Dave is a painter and David is a lover. Just like anyone. we are more than just our **__key: |
+ | |||
+ | Structs can also have functions attached to it. using impl. | ||
+ | |||
+ | <code rust> | ||
+ | impl Duck{ | ||
+ | fn print_name(){ | ||
+ | | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | this is how you can make a class with structs. The Declaration of the struct is like a C++ header file and the impl like the cpp file ((not really)). | ||
+ | |||
+ | YOU caaaaaan also deconstruct structs but I didnt havtadoit for the exercises so idkfa. | ||
==== Enums ==== | ==== Enums ==== | ||
+ | |||
+ | Enums are another grouping of data. One major difference between enums and structs is that with structs you MUST initialize every value when you instance it. With an enum you can only pick one of its possible values while instancing. Usually its used when you have different options and can pick one(variants). [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | enum Message { | ||
+ | ChangeColor(u8, | ||
+ | Echo(String), | ||
+ | Move{x: | ||
+ | Quit, | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This enum has for variants and each one hold a different type. This way our one message enum can deal with many use cases rather than having different overloaded functions. | ||
+ | |||
+ | We can use " | ||
+ | |||
+ | <code rust> | ||
+ | let message = Message:: | ||
+ | match message{ | ||
+ | Message:: | ||
+ | Message:: | ||
+ | Message:: | ||
+ | Message:: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | **EZ PZZ** <wrap lo> | ||
+ | |||
+ | Matches must be **EXHAUSTIVE**.. or rust mama will yell. | ||
+ | |||
+ | The two other special matching cases are __other__ and _____. | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | let dice_roll = 9; | ||
+ | match dice_roll { | ||
+ | 3 => add_fancy_hat(), | ||
+ | 7 => remove_fancy_hat(), | ||
+ | other => move_player(other), | ||
+ | } | ||
+ | |||
+ | fn add_fancy_hat() {} | ||
+ | fn remove_fancy_hat() {} | ||
+ | fn move_player(num_spaces: | ||
+ | </ | ||
+ | Here the values 3 and 7 are covered. ALL OTHER VALUES ARE EVALUATED AS OTHER. We can also use _ which kind of does the same thing but will also work with values that are non-valid. | ||
+ | <code rust> | ||
+ | let dice_roll = 9 | ||
+ | match dice_roll { | ||
+ | 3 => add_fancy_hat(), | ||
+ | 7 => remove_fancy_hat(), | ||
+ | _ => (), // the () is an empty tuple and basically says "Yo, mr.code don't do anything" | ||
+ | } | ||
+ | |||
+ | fn add_fancy_hat() {} | ||
+ | fn remove_fancy_hat() {} | ||
+ | </ | ||
==== Modules ==== | ==== Modules ==== | ||
+ | Modules help break up code into reusable chunks. Kind of like namespaces. | ||
+ | |||
+ | **A module is a collection of items: functions, structs, traits, impl and other modules.** | ||
+ | Creating a module [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | mod sausage_factory { | ||
+ | // Don't let anybody outside of this module see this! | ||
+ | fn get_secret_recipe() -> String { | ||
+ | String:: | ||
+ | } | ||
+ | |||
+ | pub fn make_sausage() { | ||
+ | get_secret_recipe(); | ||
+ | println!(" | ||
+ | } | ||
+ | } | ||
+ | |||
+ | fn main() { | ||
+ | sausage_factory:: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Another thing we can do with modules is bring them into scope to use them with shorthand names. This can be done with the **use .. as** syntax. | ||
+ | |||
+ | <code rust> | ||
+ | use std:: | ||
+ | use std:: | ||
+ | |||
+ | fn main() { | ||
+ | match SystemTime:: | ||
+ | Ok(n) => println!(" | ||
+ | Err(_) => panic!(" | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | Yea man thats basically about it... why are you (([[https:// | ||
- | ~~ DISCUSSION | F's ~~ | + | ~~DISCUSSION | F's ~~ |