apple-music 0.2.0

A Rust Library to control local Apple Music App
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct Artwork {
    pub class: String, // the class of the item
    pub raw_properties: String, // Every property of the item

    pub data: Option<String>,
    pub description: Option<String>,
    pub downloaded: bool,
    pub format: Option<String>,
    pub kind: i32,
    pub raw_data: String,
}