Struct soundcloud::Comment [] [src]

pub struct Comment {
    pub id: usize,
    pub uri: String,
    pub created_at: String,
    pub body: String,
    pub timestamp: Option<usize>,
    pub user_id: usize,
    pub user: User,
    pub track_id: usize,
}

User comment.

Fields

id: usize

Integer ID.

uri: String

API resource URL.

created_at: String

Time of creation, as an unparsed string.

body: String

HTML comment body.

timestamp: Option<usize>

Associated timestamp in milliseconds.

user_id: usize

User ID of the commenter.

user: User

Small representation of the commenters user.

track_id: usize

The track ID of the related track.

Trait Implementations

Derived Implementations

impl Clone for Comment
[src]

fn clone(&self) -> Comment

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for Comment
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.