(&self)
| 479 | } |
| 480 | |
| 481 | pub fn get_ptr<T>(&self) -> *mut T { |
| 482 | let ptr = unsafe { self.0.ptr }; |
| 483 | core::ptr::with_exposed_provenance_mut(usize::from_le(ptr)) |
| 484 | } |
| 485 | |
| 486 | pub fn set_i32(&mut self, x: i32) { |
| 487 | self.0.i32 = x.to_le(); |
no outgoing calls
no test coverage detected