rustlings/exercises/structs/structs1.rs

50 lines
1.0 KiB
Rust
Raw Normal View History

2019-05-25 06:39:58 -05:00
// structs1.rs
// Address all the TODOs to make the tests pass!
// Execute `rustlings hint structs1` or use the `hint` watch subcommand for a hint.
2019-05-25 06:39:58 -05:00
struct ColorClassicStruct {
2023-02-17 12:44:18 -06:00
red: u32,
green: u32,
blue: u32,
2019-05-25 06:39:58 -05:00
}
2023-02-17 12:44:18 -06:00
struct ColorTupleStruct(u32, u32, u32);
2019-05-25 06:39:58 -05:00
#[derive(Debug)]
struct UnitLikeStruct;
2019-05-25 06:39:58 -05:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn classic_c_structs() {
2023-02-17 12:44:18 -06:00
let green = ColorClassicStruct {
red: 0,
green: 255,
blue: 0,
};
2019-05-25 06:39:58 -05:00
assert_eq!(green.red, 0);
assert_eq!(green.green, 255);
assert_eq!(green.blue, 0);
2019-05-25 06:39:58 -05:00
}
#[test]
fn tuple_structs() {
2023-02-17 12:44:18 -06:00
let green = ColorTupleStruct(0, 255, 0);
2019-05-25 06:39:58 -05:00
assert_eq!(green.0, 0);
assert_eq!(green.1, 255);
assert_eq!(green.2, 0);
2019-05-25 06:39:58 -05:00
}
#[test]
fn unit_structs() {
2023-02-17 12:44:18 -06:00
let unit_like_struct = UnitLikeStruct;
let message = format!("{:?}s are fun!", unit_like_struct);
2019-05-25 06:39:58 -05:00
assert_eq!(message, "UnitLikeStructs are fun!");
2019-05-25 06:39:58 -05:00
}
}