Volatile read of contained value:
(&self)
| 79 | { |
| 80 | // Volatile read of contained value: |
| 81 | pub fn read(&self) -> T |
| 82 | where |
| 83 | A: CanRead, |
| 84 | { |
| 85 | unsafe |
| 86 | { |
| 87 | ptr::read_volatile(&*self.reference) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | // Volatile write, sets value to specified value: |
| 92 | pub fn write(&mut self, value: T) |
no outgoing calls
no test coverage detected