pub trait StoreConstEmpty<K: ?Sized, V: ?Sized> {
    const EMPTY: Self;
}
Expand description

Trait to enable const construction of empty store.

Required Associated Constants§

source

const EMPTY: Self

An empty store

Implementations on Foreign Types§

source§

impl<'a, K: 'a, V: 'a> StoreConstEmpty<K, V> for &'a [(K, V)]

source§

const EMPTY: &'a [(K, V)] = _

source§

impl<K, V> StoreConstEmpty<K, V> for Vec<(K, V)>

Implementors§