rustlings/exercises/generics/generics2.rs

28 lines
567 B
Rust
Raw Normal View History

2021-07-08 02:58:36 +07: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-07-08 03:02:31 +07:00
struct Wrapper<T> {
value: T,
2021-07-08 02:58:36 +07:00
}
2021-07-08 03:02:31 +07:00
// <T> must be both for impl and Wrapper
impl<T> Wrapper<T> {
pub fn new(value: T) -> Self {
2021-07-08 02:58:36 +07:00
Wrapper { value }
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn store_u32_in_wrapper() {
assert_eq!(Wrapper::new(42).value, 42);
}
#[test]
fn store_str_in_wrapper() {
assert_eq!(Wrapper::new("Foo").value, "Foo");
}
}