pub struct JobListResponse {
pub execute_id: String,
pub jobids: Vec<f64>,
}Expand description
JobListResponse
JSON schema
{
"type": "object",
"required": [
"executeId",
"jobids"
],
"properties": {
"executeId": {
"description": "Identifier for this rclone process.",
"type": "string"
},
"jobids": {
"description": "Job IDs suitable for use with `job/status` and
`job/stop`.",
"type": "array",
"items": {
"type": "number"
}
}
}
}Fields§
§execute_id: StringIdentifier for this rclone process.
jobids: Vec<f64>Job IDs suitable for use with job/status and job/stop.
Trait Implementations§
Source§impl Clone for JobListResponse
impl Clone for JobListResponse
Source§fn clone(&self) -> JobListResponse
fn clone(&self) -> JobListResponse
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 JobListResponse
impl Debug for JobListResponse
Source§impl<'de> Deserialize<'de> for JobListResponse
impl<'de> Deserialize<'de> for JobListResponse
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<&JobListResponse> for JobListResponse
impl From<&JobListResponse> for JobListResponse
Source§fn from(value: &JobListResponse) -> Self
fn from(value: &JobListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JobListResponse
impl RefUnwindSafe for JobListResponse
impl Send for JobListResponse
impl Sync for JobListResponse
impl Unpin for JobListResponse
impl UnwindSafe for JobListResponse
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