(&mut self, cache: Option<Cache>)
| 1588 | /// [docs]: https://bytecodealliance.github.io/wasmtime/cli-cache.html |
| 1589 | #[cfg(feature = "cache")] |
| 1590 | pub fn cache(&mut self, cache: Option<Cache>) -> &mut Self { |
| 1591 | self.cache = cache; |
| 1592 | self |
| 1593 | } |
| 1594 | |
| 1595 | /// Sets a custom memory creator. |
| 1596 | /// |
no outgoing calls