(id: SteamID)
| 6 | } |
| 7 | |
| 8 | pub fn get_name(id: SteamID) -> Result<String, SteamError> { |
| 9 | app::with_client(|client| Ok(client.friends().get_friend(id.into()).name())) |
| 10 | } |
| 11 | |
| 12 | pub fn get_self_name() -> Result<String, SteamError> { |
| 13 | app::with_client(|client| Ok(client.friends().name())) |
nothing calls this directly
no test coverage detected