pub struct VoiceRecordingsSyncResponse {
pub accepted: u32,
pub skipped: u32,
pub items: Vec<VoiceRecordingSyncItem>,
}Expand description
Full response from POST /api/voice/recordings/sync. Superset of
the generic crate::SyncResponse — see Client::sync_recordings.
Fields§
§accepted: u32§skipped: u32§items: Vec<VoiceRecordingSyncItem>Trait Implementations§
Source§impl Clone for VoiceRecordingsSyncResponse
impl Clone for VoiceRecordingsSyncResponse
Source§fn clone(&self) -> VoiceRecordingsSyncResponse
fn clone(&self) -> VoiceRecordingsSyncResponse
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 Debug for VoiceRecordingsSyncResponse
impl Debug for VoiceRecordingsSyncResponse
Source§impl<'de> Deserialize<'de> for VoiceRecordingsSyncResponse
impl<'de> Deserialize<'de> for VoiceRecordingsSyncResponse
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 VoiceRecordingsSyncResponse
impl RefUnwindSafe for VoiceRecordingsSyncResponse
impl Send for VoiceRecordingsSyncResponse
impl Sync for VoiceRecordingsSyncResponse
impl Unpin for VoiceRecordingsSyncResponse
impl UnsafeUnpin for VoiceRecordingsSyncResponse
impl UnwindSafe for VoiceRecordingsSyncResponse
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