(_ids: I)
| 87 | |
| 88 | pub mod achievements { |
| 89 | use super::{SteamError, disabled}; |
| 90 | |
| 91 | pub fn unlock(_id: &str) -> Result<(), SteamError> { |
| 92 | disabled() |
| 93 | } |
| 94 | |
| 95 | pub fn unlock_many<I, S>(_ids: I) -> Result<(), SteamError> |
| 96 | where |
| 97 | I: IntoIterator<Item = S>, |
| 98 | S: AsRef<str>, |