(&self)
| 124 | } |
| 125 | |
| 126 | pub fn is_null(&self) -> bool { |
| 127 | self.0.is_null() |
| 128 | } |
| 129 | |
| 130 | pub fn get_as_mut(self) -> AxResult<&'static mut T> { |
| 131 | check_region(self.address(), Layout::new::<T>(), Self::ACCESS_FLAGS)?; |
no outgoing calls
no test coverage detected