2020-02-27 19:09:08 -05:00
|
|
|
// This powerful wrapper provides the ability to store a positive integer value.
|
|
|
|
// Rewrite it using generics so that it supports wrapping ANY type.
|
2021-05-11 15:50:05 -04:00
|
|
|
|
2020-04-21 08:34:25 -04:00
|
|
|
struct Wrapper {
|
2020-08-10 10:24:21 -04:00
|
|
|
value: u32,
|
2020-02-27 19:09:08 -05:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:34:25 -04:00
|
|
|
impl Wrapper {
|
2024-05-22 09:04:12 -04:00
|
|
|
fn new(value: u32) -> Self {
|
2020-02-27 19:09:08 -05:00
|
|
|
Wrapper { value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2020-02-27 19:09:08 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn store_u32_in_wrapper() {
|
2020-07-10 22:01:38 -04:00
|
|
|
assert_eq!(Wrapper::new(42).value, 42);
|
2020-02-27 19:09:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn store_str_in_wrapper() {
|
2020-04-21 08:34:25 -04:00
|
|
|
assert_eq!(Wrapper::new("Foo").value, "Foo");
|
2020-02-27 19:09:08 -05:00
|
|
|
}
|
2020-07-10 22:01:38 -04:00
|
|
|
}
|