Reads the alias region that this memory operation works with.
(self)
| 182 | |
| 183 | /// Reads the alias region that this memory operation works with. |
| 184 | pub fn alias_region(self) -> Option<AliasRegion> { |
| 185 | self.region.expand() |
| 186 | } |
| 187 | |
| 188 | /// Sets the alias region that this works on to the specified `region`. |
| 189 | pub fn with_alias_region(mut self, region: Option<AliasRegion>) -> Self { |
no test coverage detected