use super::*; use std::fs::{ File, Metadata, }; #[derive(Debug)] pub struct Job { fd: File, stat: Metadata, /// We grab the slice of memory we write to from here state: state::State, /// From this offset offset: usize, } //TODO: job's work :^)