rspotify 0.10.0

Spotify API wrapper
Documentation
1
2
3
4
5
6
7
8
//! Image object
///[image object](https://developer.spotify.com/web-api/object-model/#image-object)
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Image {
    pub height: Option<u32>,
    pub url: String,
    pub width: Option<u32>,
}