pub struct QueueMoveRequest {
pub start_index: u32,
pub destination_index: u32,
pub return_queue: Option<bool>,
}Expand description
Request body for POST /queue/move-to-position.
Fields§
§start_index: u32Current 1-based index of the item to move.
destination_index: u32Target 1-based index.
return_queue: Option<bool>If true, the response includes the updated queue.
Trait Implementations§
Source§impl Clone for QueueMoveRequest
impl Clone for QueueMoveRequest
Source§fn clone(&self) -> QueueMoveRequest
fn clone(&self) -> QueueMoveRequest
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 QueueMoveRequest
impl Debug for QueueMoveRequest
Auto Trait Implementations§
impl Freeze for QueueMoveRequest
impl RefUnwindSafe for QueueMoveRequest
impl Send for QueueMoveRequest
impl Sync for QueueMoveRequest
impl Unpin for QueueMoveRequest
impl UnsafeUnpin for QueueMoveRequest
impl UnwindSafe for QueueMoveRequest
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