pub struct QueueEnqueueBatchReply {
pub job_ids: Vec<u64>,
pub error: Option<String>,
}Expand description
Response to QueueEnqueueBatchRequest.
Fields§
§job_ids: Vec<u64>Assigned ids in the same order as the request (dedup hits echo existing ids).
error: Option<String>Set when the batch failed before any job was committed.
Trait Implementations§
Source§impl Clone for QueueEnqueueBatchReply
impl Clone for QueueEnqueueBatchReply
Source§fn clone(&self) -> QueueEnqueueBatchReply
fn clone(&self) -> QueueEnqueueBatchReply
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 QueueEnqueueBatchReply
impl Debug for QueueEnqueueBatchReply
Source§impl<'de> Deserialize<'de> for QueueEnqueueBatchReply
impl<'de> Deserialize<'de> for QueueEnqueueBatchReply
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
impl Eq for QueueEnqueueBatchReply
Source§impl PartialEq for QueueEnqueueBatchReply
impl PartialEq for QueueEnqueueBatchReply
Source§impl Serialize for QueueEnqueueBatchReply
impl Serialize for QueueEnqueueBatchReply
impl StructuralPartialEq for QueueEnqueueBatchReply
Auto Trait Implementations§
impl Freeze for QueueEnqueueBatchReply
impl RefUnwindSafe for QueueEnqueueBatchReply
impl Send for QueueEnqueueBatchReply
impl Sync for QueueEnqueueBatchReply
impl Unpin for QueueEnqueueBatchReply
impl UnsafeUnpin for QueueEnqueueBatchReply
impl UnwindSafe for QueueEnqueueBatchReply
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