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