1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-11-29 22:47:43 +02:00

generics2 solution

This commit is contained in:
mo8it
2024-06-27 02:25:11 +02:00
parent 46121b71cf
commit de3f846a53
3 changed files with 32 additions and 9 deletions

View File

@@ -1,10 +1,10 @@
// This powerful wrapper provides the ability to store a positive integer value.
// Rewrite it using generics so that it supports wrapping ANY type.
// TODO: Rewrite it using a generic so that it supports wrapping ANY type.
struct Wrapper {
value: u32,
}
// TODO: Adapt the struct's implementation to be generic over the wrapped value.
impl Wrapper {
fn new(value: u32) -> Self {
Wrapper { value }