diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/mod.rs b/src/client/mod.rs index 65cf14e..2a7c00b 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -1170,7 +1170,7 @@ impl Client { } } -pub struct BootInfo { +struct BootInfo { gateway_url: Arc<Mutex<String>>, login_type: LoginType, shard_info: Option<[u64; 2]>, @@ -1178,7 +1178,7 @@ pub struct BootInfo { } #[cfg(feature="framework")] -pub struct MonitorInfo { +struct MonitorInfo { data: Arc<Mutex<ShareMap>>, event_store: Arc<RwLock<EventStore>>, framework: Arc<Mutex<Framework>>, @@ -1191,7 +1191,7 @@ pub struct MonitorInfo { } #[cfg(not(feature="framework"))] -pub struct MonitorInfo { +struct MonitorInfo { data: Arc<Mutex<ShareMap>>, event_store: Arc<RwLock<EventStore>>, gateway_url: Arc<Mutex<String>>, |