rs_store/
lib.rs

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
pub mod dispatcher;
pub use dispatcher::*;

pub mod middleware;
pub use middleware::*;
pub mod reducer;
pub use reducer::*;

pub mod store_impl;
pub use store_impl::*;

pub mod builder;
pub use builder::*;

pub(crate) mod channel;
pub use channel::*;

mod metrics;
pub mod subscriber;
pub use subscriber::*;

pub mod effect;
pub use effect::*;

pub mod selector;
pub use selector::*;

#[cfg(feature = "notify-channel")]
pub(crate) mod iterator;

pub mod store;
pub use store::*;

pub mod store_droppable;
pub use store_droppable::*;