pub struct Tracks {
pub href: Option<String>,
pub next: Option<String>,
pub data: Vec<TrackData>,
}Fields§
§href: Option<String>A relative location for the relationship.
next: Option<String>A relative cursor to fetch the next paginated collection of resources in the relationship if more exist.
data: Vec<TrackData>The data for the included tracks.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tracks
impl<'de> Deserialize<'de> for Tracks
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Tracks
impl RefUnwindSafe for Tracks
impl Send for Tracks
impl Sync for Tracks
impl Unpin for Tracks
impl UnwindSafe for Tracks
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more