(&self)
| 116 | const ACCESS_FLAGS: MappingFlags = MappingFlags::READ.union(MappingFlags::WRITE); |
| 117 | |
| 118 | pub fn address(&self) -> VirtAddr { |
| 119 | VirtAddr::from_ptr_of(self.0) |
| 120 | } |
| 121 | |
| 122 | pub fn cast<U>(self) -> UserPtr<U> { |
| 123 | UserPtr(self.0 as *mut U) |
no outgoing calls
no test coverage detected