Add the Fd definition file.

Damn, I forgot to `git add` it.
This commit is contained in:
ticki
2016-08-31 17:01:08 +02:00
parent 9ca3559cc8
commit 4966842d72

5
scheme/fd.rs Normal file
View File

@@ -0,0 +1,5 @@
/// A file descriptor.
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Fd {
inner: usize,
}