pub struct JobBatchResponse {
pub results: Vec<Map<String, Value>>,
}Expand description
JobBatchResponse
JSON schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
}Fields§
§results: Vec<Map<String, Value>>Trait Implementations§
Source§impl Clone for JobBatchResponse
impl Clone for JobBatchResponse
Source§fn clone(&self) -> JobBatchResponse
fn clone(&self) -> JobBatchResponse
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 JobBatchResponse
impl Debug for JobBatchResponse
Source§impl Default for JobBatchResponse
impl Default for JobBatchResponse
Source§impl<'de> Deserialize<'de> for JobBatchResponse
impl<'de> Deserialize<'de> for JobBatchResponse
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<&JobBatchResponse> for JobBatchResponse
impl From<&JobBatchResponse> for JobBatchResponse
Source§fn from(value: &JobBatchResponse) -> Self
fn from(value: &JobBatchResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JobBatchResponse
impl RefUnwindSafe for JobBatchResponse
impl Send for JobBatchResponse
impl Sync for JobBatchResponse
impl Unpin for JobBatchResponse
impl UnwindSafe for JobBatchResponse
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