pub struct QueuedWorkBatch {
pub batch_id: String,
pub session_id: String,
pub enqueue_seq: u64,
pub source_key: Option<String>,
pub delivery_policy: DeliveryPolicy,
pub slot_policy: SlotPolicy,
pub merge_key: MergeKey,
pub available_at_ms: u64,
pub enqueued_at_ms: u64,
pub items: Vec<QueuedWorkItem>,
}Fields§
§batch_id: String§session_id: String§enqueue_seq: u64§source_key: Option<String>§delivery_policy: DeliveryPolicy§slot_policy: SlotPolicy§merge_key: MergeKey§available_at_ms: u64§enqueued_at_ms: u64§items: Vec<QueuedWorkItem>Trait Implementations§
Source§impl Clone for QueuedWorkBatch
impl Clone for QueuedWorkBatch
Source§fn clone(&self) -> QueuedWorkBatch
fn clone(&self) -> QueuedWorkBatch
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 QueuedWorkBatch
impl Debug for QueuedWorkBatch
Source§impl<'de> Deserialize<'de> for QueuedWorkBatch
impl<'de> Deserialize<'de> for QueuedWorkBatch
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 !RefUnwindSafe for QueuedWorkBatch
impl !UnwindSafe for QueuedWorkBatch
impl Freeze for QueuedWorkBatch
impl Send for QueuedWorkBatch
impl Sync for QueuedWorkBatch
impl Unpin for QueuedWorkBatch
impl UnsafeUnpin for QueuedWorkBatch
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