rustlings/exercises/generics/generics2.rs

30 lines
613 B
Rust
Raw Normal View History

2020-02-27 18:09:08 -06:00
// This powerful wrapper provides the ability to store a positive integer value.
// Rewrite it using generics so that it supports wrapping ANY type.
2020-02-27 18:31:55 -06:00
2022-07-14 11:11:05 -05:00
// Execute `rustlings hint generics2` or use the `hint` watch subcommand for a hint.
2023-02-24 11:51:24 -06:00
struct Wrapper<T> {
value: T,
2020-02-27 18:09:08 -06:00
}
2023-02-24 11:51:24 -06:00
impl<T> Wrapper<T> {
pub fn new(value: T) -> Self {
2020-02-27 18:09:08 -06:00
Wrapper { value }
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn store_u32_in_wrapper() {
assert_eq!(Wrapper::new(42).value, 42);
2020-02-27 18:09:08 -06:00
}
#[test]
fn store_str_in_wrapper() {
2020-04-21 07:34:25 -05:00
assert_eq!(Wrapper::new("Foo").value, "Foo");
2020-02-27 18:09:08 -06:00
}
}