usesuper::*;/// Access to the steam user interfacepubstructUser{pub(crate)user:*mutsys::ISteamUser,pub(crate)_client:Arc<ClientInner>,}implUser{/// Returns the steam id of the current userpubfnsteam_id(&self)->SteamId{unsafe{SteamId(sys::SteamAPI_ISteamUser_GetSteamID(self.user))}}}