1 2 3 4 5 6 7 8
use exchange::SerTicker; use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Default, Serialize, Deserialize)] pub struct Config { pub colors: Vec<(SerTicker, iced_core::Color)>, pub names: Vec<(SerTicker, String)>, }