rustlings/exercises/14_generics/generics2.rs

32 lines
663 B
Rust
Raw Normal View History

2020-02-27 19:09:08 -05:00
// This powerful wrapper provides the ability to store a positive integer value.
2024-06-26 20:25:11 -04:00
// TODO: Rewrite it using a generic so that it supports wrapping ANY type.
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
}
2024-06-26 20:25:11 -04:00
// TODO: Adapt the struct's implementation to be generic over the wrapped value.
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 }
}
}
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() {
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
}
}