1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
appellation: store <module>
authors: @FL03
*/
//! this module is focused on defining a set of traits and types for abstracting the behaviourds
//! of an entity capable of storing some data.
pub use ;
/// this module implements the [`ContainerBase`] type, which is a base type for containers that
/// use a store to manage their data.
/// this module defiens the [`StoreError`] enum for handling various errors that can occur with
/// stores
pub