pub trait Store: Send + Sync {
    fn push(&self, entry: Cow<'_, Entry>) -> Result<(), Error>;
}

Required methods

Implementors