pub trait DirectStateStore: StateStore<Key = NotKeyed> { }
Expand description

A trait for state stores that only keep one rate limiting state.

This is blanket-implemented by all StateStores with NotKeyed key associated types.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> DirectStateStore for T
where T: StateStore<Key = NotKeyed>,