Skip to main content

CacheObject

Trait CacheObject 

Source
pub trait CacheObject {
    type Key: Serialize + DeserializeOwned;
}
Expand description

A trait for types that can be used as a cache object.

Required Associated Types§

Source

type Key: Serialize + DeserializeOwned

The cursor key type for the cache object.

Implementors§