pub struct AddJobSubmitted {
pub code: i32,
pub message: String,
pub data: AddJobSubmittedData,
}Expand description
Response when add is submitted in async mode (returns task_id for status polling).
Fields§
§code: i32§message: String§data: AddJobSubmittedDataTrait Implementations§
Source§impl Clone for AddJobSubmitted
impl Clone for AddJobSubmitted
Source§fn clone(&self) -> AddJobSubmitted
fn clone(&self) -> AddJobSubmitted
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 AddJobSubmitted
impl Debug for AddJobSubmitted
Source§impl<'de> Deserialize<'de> for AddJobSubmitted
impl<'de> Deserialize<'de> for AddJobSubmitted
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 AddJobSubmitted
impl RefUnwindSafe for AddJobSubmitted
impl Send for AddJobSubmitted
impl Sync for AddJobSubmitted
impl Unpin for AddJobSubmitted
impl UnsafeUnpin for AddJobSubmitted
impl UnwindSafe for AddJobSubmitted
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