redox/kernel/context/file.rs

11 lines
225 B
Rust
Raw Normal View History

2016-08-15 02:16:56 +02:00
//! File struct
/// A file
#[derive(Copy, Clone, Debug)]
pub struct File {
/// The scheme that this file refers to
pub scheme: usize,
/// The number the scheme uses to refer to this file
pub number: usize,
}