steam-rs 0.5.1

Safe Rust bindings for the Steam Web API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Implements the `ISteamUserStats` interface
//!
//! Provides various statistics about Steam users and applications.
//!
//! **Note:** This implementation is incomplete!
//! The following endpoints are currently unimplemented:
//!
//! - GetGlobalStatsForGame

const INTERFACE: &str = "ISteamUserStats";

pub mod get_global_achievement_percentages_for_app;
pub mod get_number_of_current_players;
pub mod get_player_achievements;
pub mod get_schema_for_game;
pub mod get_user_stats_for_game;