(dst: &mut T, src: T)
| 733 | /// Perform a volatile write to the destination |
| 734 | #[inline(always)] |
| 735 | fn volatile_write<T: Copy + Sized>(dst: &mut T, src: T) { |
| 736 | unsafe { ptr::write_volatile(dst, src) } |
| 737 | } |
| 738 | |
| 739 | /// Perform a volatile `memset` operation which fills a slice with a value |
| 740 | /// |