Set the accessing user memory flag.
(&self, accessing: bool)
| 151 | |
| 152 | /// Set the accessing user memory flag. |
| 153 | pub fn set_accessing_user_memory(&self, accessing: bool) { |
| 154 | self.accessing_user_memory |
| 155 | .store(accessing, Ordering::Release); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | #[extern_trait] |
no outgoing calls
no test coverage detected