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 2b717ef commit 90455d2Copy full SHA for 90455d2
exercises/practice/paasio/src/lib.rs
@@ -1,5 +1,8 @@
1
use std::io::{Read, Result, Write};
2
3
+// the PhantomData instances in this file are just to stop compiler complaints
4
+// about missing generics; feel free to remove them
5
+
6
pub struct ReadStats<R>(::std::marker::PhantomData<R>);
7
8
impl<R: Read> ReadStats<R> {
0 commit comments