diff options
Diffstat (limited to 'src/who.rs')
| -rw-r--r-- | src/who.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,6 @@ -#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)] pub struct Who { name: String, } |
