rsoundcloud 0.2.6

A SoundCloud API client
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// A web profile
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WebProfile {
    pub url: String,
    pub network: String,
    pub title: String,
    pub username: Option<String>,
}