pub type CacheId<'a> = Cow<'a, str>;
Unique identifier of the Cache object.
pub enum CacheId<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.