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