1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Provides thread-safe, concurrent cache implementations.
/// The type of the unique ID to identify a predicate used by
/// [`Cache::invalidate_entries_if`][invalidate-if] method.
///
/// A `PredicateId` is a `String` of UUID (version 4).
///
/// [invalidate-if]: ./struct.Cache.html#method.invalidate_entries_if
pub type PredicateId = String;
pub type PredicateIdStr<'a> = &'a str;
pub use crateIter;
pub use ;
/// Provides extra methods that will be useful for testing.
// Empty struct to be used in `InitResult::InitErr` to represent the Option None.
pub ;
// Empty struct to be used in `InitResult::InitErr`` to represent the Compute None.
pub ;