pub trait Caller<Ctx, K> {
    fn ttl() -> u8;
    fn call(&mut self, ctx: &Ctx, key: &K) -> u8;
    fn fail(&mut self, ctx: &Ctx, key: &K);
}

Required Methods

Time-To-Live

Implementors