Sets the trap code for this `MemFlagsData` to `None`, returning the new flags.
(self)
| 288 | /// Sets the trap code for this `MemFlagsData` to `None`, returning the new |
| 289 | /// flags. |
| 290 | pub const fn with_notrap(self) -> Self { |
| 291 | self.with_trap_code(None) |
| 292 | } |
| 293 | |
| 294 | /// Is this memory operation safe to move so long as its data dependencies |
| 295 | /// remain satisfied? |
no test coverage detected