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
}

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);

Enums

Modules

~~ DISCUSSION | F's ~~

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:
A Z Q K D
 
devlogs/14_5_2022.1652574312.txt.gz · Last modified: 2023/10/13 16:43 (external edit)