pub struct ExternalUrls {
pub spotify: String,
}Expand description
Contains external URLs for content. Currently, it seems that only Spotify URLs are included here.
Fields§
§spotify: StringThe Spotify URL for the content.
Trait Implementations§
Source§impl Clone for ExternalUrls
impl Clone for ExternalUrls
Source§fn clone(&self) -> ExternalUrls
fn clone(&self) -> ExternalUrls
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExternalUrls
impl Debug for ExternalUrls
Source§impl<'de> Deserialize<'de> for ExternalUrls
impl<'de> Deserialize<'de> for ExternalUrls
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
Source§impl PartialEq for ExternalUrls
impl PartialEq for ExternalUrls
Source§fn eq(&self, other: &ExternalUrls) -> bool
fn eq(&self, other: &ExternalUrls) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExternalUrls
Auto Trait Implementations§
impl Freeze for ExternalUrls
impl RefUnwindSafe for ExternalUrls
impl Send for ExternalUrls
impl Sync for ExternalUrls
impl Unpin for ExternalUrls
impl UnsafeUnpin for ExternalUrls
impl UnwindSafe for ExternalUrls
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