(input: impl AchievementUnlockInput)
| 142 | S: AsRef<str>, |
| 143 | { |
| 144 | fn unlock(self) -> Result<(), SteamError> { |
| 145 | unlock_many(self.iter().map(AsRef::as_ref)) |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | pub fn unlock_input(input: impl AchievementUnlockInput) -> Result<(), SteamError> { |