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