diff options
| author | Flaise <[email protected]> | 2019-08-02 16:06:04 -0500 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2019-08-03 09:08:03 +0100 |
| commit | f36084df856b0fc3933afe3a9f376c9ccc11a98c (patch) | |
| tree | 25994cdb5a83e7e120b7e10daf11dbc2f17a1888 /src/app.rs | |
| parent | Fixed build script on Linux (diff) | |
| download | archived-steamworks-rs-f36084df856b0fc3933afe3a9f376c9ccc11a98c.tar.xz archived-steamworks-rs-f36084df856b0fc3933afe3a9f376c9ccc11a98c.zip | |
Implemented Serialize, Deserialize and other common traits where appropriate
Diffstat (limited to 'src/app.rs')
| -rw-r--r-- | src/app.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ use super::*; /// An id for a steam app/game -#[derive(Clone, Copy, Debug, PartialEq, Eq)] +#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)] pub struct AppId(pub u32); /// Access to the steam apps interface |