1 2 3 4 5 6 7 8 9 10
use crate::map::StableMap; impl<K, V, S> Default for StableMap<K, V, S> where S: Default, { fn default() -> Self { Self::with_hasher(S::default()) } }