(id: SteamID)
| 20 | } |
| 21 | |
| 22 | pub fn get(id: SteamID) -> Result<FriendInfo, SteamError> { |
| 23 | app::with_client(|client| Ok(friend_info(client.friends().get_friend(id.into())))) |
| 24 | } |
| 25 | |
| 26 | pub fn get_avatar(id: SteamID, size: SteamAvatarSize) -> Result<Option<SteamAvatar>, SteamError> { |
| 27 | app::with_client(|client| { |
no test coverage detected