pub struct SavedShowObject {
pub added_at: String,
pub show: SimplifiedShowObject,
}
Expand description
Fields§
§added_at: String
The date and time the show was saved. Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ. If the time is imprecise (for example, the date/time of an album release), an additional field indicates the precision; see for example, release_date in an album object.
show: SimplifiedShowObject
Information about the show.
Trait Implementations§
Source§impl Clone for SavedShowObject
impl Clone for SavedShowObject
Source§fn clone(&self) -> SavedShowObject
fn clone(&self) -> SavedShowObject
Returns a duplicate of the value. Read more
1.0.0 · 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 SavedShowObject
impl Debug for SavedShowObject
Source§impl<'de> Deserialize<'de> for SavedShowObject
impl<'de> Deserialize<'de> for SavedShowObject
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 SavedShowObject
impl PartialEq for SavedShowObject
Source§impl Serialize for SavedShowObject
impl Serialize for SavedShowObject
impl Eq for SavedShowObject
impl StructuralPartialEq for SavedShowObject
Auto Trait Implementations§
impl Freeze for SavedShowObject
impl RefUnwindSafe for SavedShowObject
impl Send for SavedShowObject
impl Sync for SavedShowObject
impl Unpin for SavedShowObject
impl UnwindSafe for SavedShowObject
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.