Implement Default for Store

This commit is contained in:
Hanno Braun 2025-01-13 20:40:54 +01:00
parent 66d4d4d455
commit d3b6c37d4c

View File

@ -15,3 +15,9 @@ impl<T> Store<T> {
Handle::new(op)
}
}
impl<T> Default for Store<T> {
fn default() -> Self {
Self::new()
}
}