Closed Esgr0bar closed 3 months ago
impl PageTableEntryTrait for PageTableEntry { type Address = u64; type Flags = u64; // FIXME: Implement the following methods fn is_dirty(&self) -> bool { todo!() } fn is_accessed(&self) -> bool { todo!() } fn is_global(&self) -> bool { todo!() } fn is_readable(&self) -> bool { todo!() } fn is_writable(&self) -> bool { todo!() } fn is_executable(&self) -> bool { todo!() } }```
Should be good with #15
PR merged