2019-05-25 11:39:58 +00:00
|
|
|
// structs1.rs
|
|
|
|
// Address all the TODOs to make the tests pass!
|
2022-07-14 09:59:29 +00:00
|
|
|
// Execute `rustlings hint structs1` or use the `hint` watch subcommand for a hint.
|
2019-05-25 11:39:58 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-05-25 11:39:58 +00:00
|
|
|
struct ColorClassicStruct {
|
|
|
|
// TODO: Something goes here
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ColorTupleStruct(/* TODO: Something goes here */);
|
|
|
|
|
2019-06-20 14:45:53 +00:00
|
|
|
#[derive(Debug)]
|
2022-07-14 10:00:46 +00:00
|
|
|
struct UnitLikeStruct;
|
2019-05-25 11:39:58 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn classic_c_structs() {
|
|
|
|
// TODO: Instantiate a classic c struct!
|
|
|
|
// let green =
|
|
|
|
|
2022-07-14 09:59:29 +00:00
|
|
|
assert_eq!(green.red, 0);
|
|
|
|
assert_eq!(green.green, 255);
|
|
|
|
assert_eq!(green.blue, 0);
|
2019-05-25 11:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn tuple_structs() {
|
|
|
|
// TODO: Instantiate a tuple struct!
|
|
|
|
// let green =
|
|
|
|
|
2022-07-14 09:59:29 +00:00
|
|
|
assert_eq!(green.0, 0);
|
|
|
|
assert_eq!(green.1, 255);
|
|
|
|
assert_eq!(green.2, 0);
|
2019-05-25 11:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unit_structs() {
|
2022-07-14 10:00:46 +00:00
|
|
|
// TODO: Instantiate a unit-like struct!
|
|
|
|
// let unit_like_struct =
|
|
|
|
let message = format!("{:?}s are fun!", unit_like_struct);
|
2019-05-25 11:39:58 +00:00
|
|
|
|
2022-07-14 10:00:46 +00:00
|
|
|
assert_eq!(message, "UnitLikeStructs are fun!");
|
2019-05-25 11:39:58 +00:00
|
|
|
}
|
|
|
|
}
|