1 2 3 4 5 6 7 8
use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] pub struct ActivityEmoji { pub animated: Option<bool>, pub name: String, pub id: Option<String>, }
1 2 3 4 5 6 7 8
use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] pub struct ActivityEmoji { pub animated: Option<bool>, pub name: String, pub id: Option<String>, }