pub struct SyncRequest<R> {
pub items: Vec<R>,
}Expand description
Body shape for POST /api/voice/{R}/sync.
items is the batch. The server caps batches at 100 — chunking
is the consumer’s responsibility (the daemon’s Uploader<E> does
this automatically; ad-hoc callers should too).
Fields§
§items: Vec<R>Trait Implementations§
Source§impl<R: Clone> Clone for SyncRequest<R>
impl<R: Clone> Clone for SyncRequest<R>
Source§fn clone(&self) -> SyncRequest<R>
fn clone(&self) -> SyncRequest<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R: Debug> Debug for SyncRequest<R>
impl<R: Debug> Debug for SyncRequest<R>
Source§impl<'de, R> Deserialize<'de> for SyncRequest<R>where
R: Deserialize<'de>,
impl<'de, R> Deserialize<'de> for SyncRequest<R>where
R: Deserialize<'de>,
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<R> Freeze for SyncRequest<R>
impl<R> RefUnwindSafe for SyncRequest<R>where
R: RefUnwindSafe,
impl<R> Send for SyncRequest<R>where
R: Send,
impl<R> Sync for SyncRequest<R>where
R: Sync,
impl<R> Unpin for SyncRequest<R>where
R: Unpin,
impl<R> UnsafeUnpin for SyncRequest<R>
impl<R> UnwindSafe for SyncRequest<R>where
R: UnwindSafe,
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