1
2
3
4
5
6
7
#[allow(missing_docs)]

pub trait Cacheable {
    type UpperKey: PartialEq+Copy;
    type LowerKey: PartialEq;
    type Payload;
}