Set endianness of the memory access, returning new flags.
(mut self, endianness: Endianness)
| 256 | |
| 257 | /// Set endianness of the memory access, returning new flags. |
| 258 | pub const fn with_endianness(mut self, endianness: Endianness) -> Self { |
| 259 | self.flags = self.flags.with_endianness(endianness); |
| 260 | self |
| 261 | } |
| 262 | |
| 263 | /// Test if this memory operation cannot trap. |
| 264 | /// |
no outgoing calls