rustlings/exercises/14_generics/generics2.rs

32 lines
669 B
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
// This powerful wrapper provides the ability to store a positive integer value.
// TODO: Rewrite it using a generic so that it supports wrapping ANY type.
2024-11-02 14:24:22 +00:00
struct Wrapper<T> {
value: T,
2024-10-28 20:46:17 +00:00
}
// TODO: Adapt the struct's implementation to be generic over the wrapped value.
2024-11-02 14:24:22 +00:00
impl <T> Wrapper<T> {
fn new(value: T) -> Self {
2024-10-28 20:46:17 +00:00
Wrapper { value }
}
}
fn main() {
// You can optionally experiment here.
}
#[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");
}
}