We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6e23c commit 0f8001eCopy full SHA for 0f8001e
exercises/generics/generics2.rs
@@ -1,5 +1,7 @@
1
// This powerful wrapper provides the ability to store a positive integer value.
2
// Rewrite it using generics so that it supports wrapping ANY type.
3
+
4
+// I AM NOT DONE
5
struct Wrapper<u32> {
6
value: u32
7
}
exercises/generics/generics3.rs
@@ -6,6 +6,7 @@
// Make the necessary code changes to support alphabetical report cards, thereby making the second
// test pass.
8
9
10
pub struct ReportCard {
11
pub grade: f32,
12
pub student_name: String,
0 commit comments