pub struct TrackObject {
pub location: Option<TrackLocation>,
pub mid: Option<String>,
pub track_name: Option<String>,
pub session_id: Option<String>,
}Fields§
§location: Option<TrackLocation>§mid: Option<String>§track_name: Option<String>§session_id: Option<String>Trait Implementations§
Source§impl Clone for TrackObject
impl Clone for TrackObject
Source§fn clone(&self) -> TrackObject
fn clone(&self) -> TrackObject
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 TrackObject
impl Debug for TrackObject
Source§impl<'de> Deserialize<'de> for TrackObject
impl<'de> Deserialize<'de> for TrackObject
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 TrackObject
impl RefUnwindSafe for TrackObject
impl Send for TrackObject
impl Sync for TrackObject
impl Unpin for TrackObject
impl UnwindSafe for TrackObject
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