1use serde::Deserialize; 2 3#[derive(Debug, Clone, Deserialize)] 4pub struct Track { 5 pub position: String, 6 pub title: String, 7 pub duration: String, 8}