pub struct BatchSubmitResponse {
pub job_ids: Vec<String>,
pub status: String,
}Expand description
Response from batch submission.
Fields§
§job_ids: Vec<String>The IDs of the created jobs.
status: StringStatus of the batch submission.
Trait Implementations§
Source§impl Clone for BatchSubmitResponse
impl Clone for BatchSubmitResponse
Source§fn clone(&self) -> BatchSubmitResponse
fn clone(&self) -> BatchSubmitResponse
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 BatchSubmitResponse
impl Debug for BatchSubmitResponse
Source§impl<'de> Deserialize<'de> for BatchSubmitResponse
impl<'de> Deserialize<'de> for BatchSubmitResponse
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 BatchSubmitResponse
impl RefUnwindSafe for BatchSubmitResponse
impl Send for BatchSubmitResponse
impl Sync for BatchSubmitResponse
impl Unpin for BatchSubmitResponse
impl UnsafeUnpin for BatchSubmitResponse
impl UnwindSafe for BatchSubmitResponse
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