pub struct SyncSyncResponse {
pub jobid: Option<i64>,
}Expand description
SyncSyncResponse
JSON schema
{
"type": "object",
"properties": {
"jobid": {
"description": "Job ID of the operation.",
"type": "integer"
}
}
}Fields§
§jobid: Option<i64>Job ID of the operation.
Trait Implementations§
Source§impl Clone for SyncSyncResponse
impl Clone for SyncSyncResponse
Source§fn clone(&self) -> SyncSyncResponse
fn clone(&self) -> SyncSyncResponse
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 SyncSyncResponse
impl Debug for SyncSyncResponse
Source§impl Default for SyncSyncResponse
impl Default for SyncSyncResponse
Source§impl<'de> Deserialize<'de> for SyncSyncResponse
impl<'de> Deserialize<'de> for SyncSyncResponse
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
Source§impl From<&SyncSyncResponse> for SyncSyncResponse
impl From<&SyncSyncResponse> for SyncSyncResponse
Source§fn from(value: &SyncSyncResponse) -> Self
fn from(value: &SyncSyncResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SyncSyncResponse
impl RefUnwindSafe for SyncSyncResponse
impl Send for SyncSyncResponse
impl Sync for SyncSyncResponse
impl Unpin for SyncSyncResponse
impl UnwindSafe for SyncSyncResponse
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