steam-user 0.1.0

Steam User web client for Rust - HTTP-based Steam Community interactions
Documentation
1
2
3
4
5
6
7
8
9
10
//! Trait implementation for `GasSteamUser`.
//!
//! All methods are pure passthrough to the inherent methods.

#[allow(unused_imports)]
use super::GasError;
#[allow(unused_imports)]
use super::GasSteamUser;

impl_passthrough_steam_user_api!(GasSteamUser, GasError);