[][src]Module ilyvion_util::cache

Cache implementations based on the Rust book exercises.

Structs

Cache

Caches the result of an (presumably) expensive operation such that accessing the result multiple times doesn't result in running the expensive operation multiple times.

KeyedCache

Caches the result of an (presumably) expensive operation such that accessing the result multiple times doesn't result in running the expensive operation multiple times.