Improve debugging and image creation

This commit is contained in:
Jeremy Soller
2016-02-24 18:23:25 -07:00
parent 8ff4863bbb
commit bae24a54b0
9 changed files with 96 additions and 22 deletions
+9
View File
@@ -5,3 +5,12 @@ pub struct Extent {
pub block: u64,
pub length: u64,
}
impl Extent {
pub fn new(block: u64, length: u64) -> Extent {
Extent {
block: block,
length: length
}
}
}