Struct qqmusic_rs::types::song::TrackInfo

source ·
pub struct TrackInfo {
Show 38 fields pub id: i64, pub type_field: i64, pub mid: String, pub name: String, pub title: String, pub subtitle: String, pub singer: Vec<Singer>, pub album: Album, pub mv: Mv, pub interval: i64, pub isonly: i64, pub language: i64, pub genre: i64, pub index_cd: i64, pub index_album: i64, pub time_public: String, pub status: i64, pub fnote: i64, pub file: File, pub pay: Pay, pub action: Action, pub ksong: Ksong, pub volume: Volume, pub label: String, pub url: String, pub bpm: i64, pub version: i64, pub trace: String, pub data_type: i64, pub modify_stamp: i64, pub pingpong: String, pub ppurl: String, pub tid: i64, pub ov: i64, pub sa: i64, pub es: String, pub vs: Vec<String>, pub vi: Vec<i64>,
}

Fields§

§id: i64§type_field: i64§mid: String§name: String§title: String§subtitle: String§singer: Vec<Singer>§album: Album§mv: Mv§interval: i64§isonly: i64§language: i64§genre: i64§index_cd: i64§index_album: i64§time_public: String§status: i64§fnote: i64§file: File§pay: Pay§action: Action§ksong: Ksong§volume: Volume§label: String§url: String§bpm: i64§version: i64§trace: String§data_type: i64§modify_stamp: i64§pingpong: String§ppurl: String§tid: i64§ov: i64§sa: i64§es: String§vs: Vec<String>§vi: Vec<i64>

Trait Implementations§

source§

impl Clone for TrackInfo

source§

fn clone(&self) -> TrackInfo

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for TrackInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for TrackInfo

source§

fn default() -> TrackInfo

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for TrackInfo

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for TrackInfo

source§

fn eq(&self, other: &TrackInfo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for TrackInfo

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for TrackInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T