diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-04 00:25:05 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-04 00:25:05 +0500 |
| commit | 918afb51dbd7abd535f425f5176cac05c14a56dc (patch) | |
| tree | a111798df0ab15dfc6a3fa2f80a150f4e0a964d4 | |
| parent | 0e12c2998bd12bc008febc0b923775732cf6c775 (diff) | |
upd: derive Clone for BetterTTVEmote
| -rw-r--r-- | src/betterttv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/betterttv.rs b/src/betterttv.rs index 236699a..0698a16 100644 --- a/src/betterttv.rs +++ b/src/betterttv.rs @@ -4,7 +4,7 @@ use serde_json::Value; use crate::emotes::RetrieveEmoteAPI; -#[derive(Debug, Deserialize)] +#[derive(Debug, Deserialize, Clone)] pub struct BetterTTVEmote { pub id: String, pub code: String, |
