mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
590 B
32 lines
590 B
3 years ago
|
// This powerful wrapper provides the ability to store a positive integer value.
|
||
|
// Rewrite it using generics so that it supports wrapping ANY type.
|
||
|
|
||
|
// Execute `rustlings hint generics2` for hints!
|
||
|
|
||
|
// I AM NOT DONE
|
||
|
|
||
|
struct Wrapper {
|
||
|
value: u32,
|
||
|
}
|
||
|
|
||
|
impl Wrapper {
|
||
|
pub fn new(value: u32) -> Self {
|
||
|
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");
|
||
|
}
|
||
|
}
|