()
| 72 | } |
| 73 | |
| 74 | fn embedder_cache() -> &'static Mutex<EmbedderCache> { |
| 75 | EMBEDDER_CACHE.get_or_init(|| Mutex::new(EmbedderCache::default())) |
| 76 | } |
| 77 | |
| 78 | fn saturating_u64_from_u128(value: u128) -> u64 { |
| 79 | if value > u64::MAX as u128 { |
no outgoing calls