parent
13980b8cd2
commit
81a40587cb
@ -1,7 +1,18 @@
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
use std::fs::{
|
||||||
|
File, Metadata,
|
||||||
|
};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Job
|
pub struct Job
|
||||||
{
|
{
|
||||||
//todo
|
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 :^)
|
||||||
|
Loading…
Reference in new issue