浏览代码

Add `#[derive(Debug)]` on all public memory map structs

Cameron Derwin 8 年之前
父节点
当前提交
7c0316732f
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/memory_map.rs

+ 3 - 1
src/memory_map.rs

@@ -1,3 +1,4 @@
+#[derive(Debug)]
 #[repr(C)]
 pub struct MemoryMapTag {
     typ: u32,
@@ -20,6 +21,7 @@ impl MemoryMapTag {
     }
 }
 
+#[derive(Debug)]
 #[repr(C)]
 pub struct MemoryArea {
     pub base_addr: u64,
@@ -28,7 +30,7 @@ pub struct MemoryArea {
     _reserved: u32,
 }
 
-#[derive(Clone)]
+#[derive(Clone, Debug)]
 pub struct MemoryAreaIter {
     current_area: *const MemoryArea,
     last_area: *const MemoryArea,