You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In bjorn3/goodgame_empire_import I have a lazy_static with the same name as its type except for the case. (data::DATAMGR and data::DataMgr)
The static overwrites the page of the struct:
lazy_static!{pubstatic ref DATAMGR:Mutex<DataMgr> = {Mutex::new(DataMgr::new())};}/// Data manager#[derive(Debug,Serialize)]pubstructDataMgr{/// List of castlespubcastles:HashMap<u64,Castle>,pubusers:HashMap<u64,User>,}
The text was updated successfully, but these errors were encountered:
In bjorn3/goodgame_empire_import I have a lazy_static with the same name as its type except for the case. (
data::DATAMGR
anddata::DataMgr
)The static overwrites the page of the struct:
The text was updated successfully, but these errors were encountered: