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/remote_storage.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/remote_storage.rs')
| -rw-r--r-- | src/remote_storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote_storage.rs b/src/remote_storage.rs index 386f70d..eddf3b8 100644 --- a/src/remote_storage.rs +++ b/src/remote_storage.rs @@ -250,7 +250,7 @@ impl <Manager> std::io::Seek for SteamFileReader<Manager> { } /// Name and size information about a file in the steam cloud -#[derive(Debug)] +#[derive(Clone, Debug, Serialize, Deserialize)] pub struct SteamFileInfo { /// The file name pub name: String, |