pub type SharedStore<S> = Arc<S>;
存储引用包装
便于在多个组件间共享存储
pub struct SharedStore<S> { /* private fields */ }