pub struct PlaybackProgressRequest {
pub item_id: String,
pub position_ticks: i64,
pub is_paused: bool,
pub play_session_id: Option<String>,
}Expand description
Request body for reporting playback progress
Fields§
§item_id: String§position_ticks: i64§is_paused: bool§play_session_id: Option<String>Trait Implementations§
Source§impl Debug for PlaybackProgressRequest
impl Debug for PlaybackProgressRequest
Auto Trait Implementations§
impl Freeze for PlaybackProgressRequest
impl RefUnwindSafe for PlaybackProgressRequest
impl Send for PlaybackProgressRequest
impl Sync for PlaybackProgressRequest
impl Unpin for PlaybackProgressRequest
impl UnsafeUnpin for PlaybackProgressRequest
impl UnwindSafe for PlaybackProgressRequest
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