diff options
| author | Matthew Collins <[email protected]> | 2019-06-05 22:21:08 +0100 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2019-06-05 22:21:08 +0100 |
| commit | 013c44959e9461fd457f060d6b590b0c30502576 (patch) | |
| tree | d12b685c602c7c33071933ea31bfb6ed663ef660 /src/friends.rs | |
| parent | Add stats & achievements API (diff) | |
| download | steamworks-rs-013c44959e9461fd457f060d6b590b0c30502576.tar.xz steamworks-rs-013c44959e9461fd457f060d6b590b0c30502576.zip | |
Implement the cloud storage api
Diffstat (limited to 'src/friends.rs')
| -rw-r--r-- | src/friends.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/friends.rs b/src/friends.rs index b5dcdaa..905c7f0 100644 --- a/src/friends.rs +++ b/src/friends.rs @@ -173,7 +173,7 @@ pub struct Friend<Manager> { } impl <Manager> Debug for Friend<Manager> { - fn fmt(&self, f: &mut Formatter) -> fmt::Result { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!(f, "Friend({:?})", self.id) } } |