Struct wasmtime_cache::ModuleCacheEntry [−][src]
pub struct ModuleCacheEntry<'config>(_);
Module level cache entry.
Implementations
impl<'config> ModuleCacheEntry<'config>
[src]
impl<'config> ModuleCacheEntry<'config>
[src]pub fn new<'data>(
compiler_name: &str,
cache_config: &'config CacheConfig
) -> Self
[src]
compiler_name: &str,
cache_config: &'config CacheConfig
) -> Self
Create the cache entry.
pub fn get_data<T, U, E>(
&self,
state: T,
compute: fn(_: T) -> Result<U, E>
) -> Result<U, E> where
T: Hash,
U: Serialize + for<'a> Deserialize<'a>,
[src]
&self,
state: T,
compute: fn(_: T) -> Result<U, E>
) -> Result<U, E> where
T: Hash,
U: Serialize + for<'a> Deserialize<'a>,
Gets cached data if state matches, otherwise calls the compute
.