Returns the number of entries currently cached.
(&self)
| 294 | |
| 295 | /// Returns the number of entries currently cached. |
| 296 | fn len(&self) -> usize { |
| 297 | self.lru_queue.len() |
| 298 | } |
| 299 | |
| 300 | /// Removes all entries from the cache. |
| 301 | fn clear(&mut self) { |
no outgoing calls