User Tools

Site Tools


devlogs:14_5_2022

This is an old revision of the document!


Saturday, May 15th 2022

Worked on a fyoo more rustlings excersizes

I spent the weekday mostly working and doing other things so I try to spend a couple hours every weekend doing more rustling challenges as it still seems thats getting me to understand the basics of rust better. After I finish rustlings I will go back to looking at bevy. Maybe it will look less cryptic.

Structs

Structs hold a bunch of values like tuples. But a struct will have each piece of data named ie: key:value pair. eg

struct Duck{
 awesomeness:f32, //Basic values
 name:(String), 
 color:(u8,u8,u8), //Tuples can be stored
 //I DONT THING YOU CAN NEST ENUMS..... lmk bois
}

To use a struct, you can access bits of it using the dot notation.

let dave = Duck{
  awesomeness:100.0,
  name: String::from("Dave"),
  color:(255,255,0),
};
println!("{}",dave.name);
Update syntaxx

We (yes, both you and I) can make a new struct that has all the same values as another instance of a struct and then change whatever you want.

//Given the duck struct above and its instance of dave
let david = {
 name: String::from("Daveed"),
 ..dave
}

david is the same as dave except for his name! 1) ))

Enums

Modules

~~ DISCUSSION | F's ~~

1)
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:value pairs. We are key:value:feelings ((NOT ACTUAL RUST

F's

Dandy, 2022/05/14 21:52, 2022/05/14 23:40

Vogue Baby Struct a pose

Enter your comment. Wiki syntax is allowed:
J K J L​ L
 
devlogs/14_5_2022.1652575119.txt.gz · Last modified: 2023/10/13 16:43 (external edit)