Set whether this allocation can be spilled to disk
(self, can_spill: bool)
| 321 | |
| 322 | /// Set whether this allocation can be spilled to disk |
| 323 | pub fn with_can_spill(self, can_spill: bool) -> Self { |
| 324 | Self { can_spill, ..self } |
| 325 | } |
| 326 | |
| 327 | /// Returns true if this allocation can spill to disk |
| 328 | pub fn can_spill(&self) -> bool { |
no outgoing calls