pub struct WorkflowTaskTombstoneArchiveBatch {
pub batch_id: WorkflowTaskTombstoneArchiveBatchId,
pub tenant_id: WorkflowTenantId,
pub tombstones: Vec<WorkflowTaskTombstone>,
}Expand description
Exact ordered tombstone batch delivered to an external archive.
Fields§
§batch_id: WorkflowTaskTombstoneArchiveBatchIdStable idempotency key reused after partial failure.
tenant_id: WorkflowTenantIdOwning tenant.
tombstones: Vec<WorkflowTaskTombstone>Detailed tombstones in ascending cursor order.
Trait Implementations§
Source§impl Clone for WorkflowTaskTombstoneArchiveBatch
impl Clone for WorkflowTaskTombstoneArchiveBatch
Source§fn clone(&self) -> WorkflowTaskTombstoneArchiveBatch
fn clone(&self) -> WorkflowTaskTombstoneArchiveBatch
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 moreimpl Eq for WorkflowTaskTombstoneArchiveBatch
impl StructuralPartialEq for WorkflowTaskTombstoneArchiveBatch
Auto Trait Implementations§
impl Freeze for WorkflowTaskTombstoneArchiveBatch
impl RefUnwindSafe for WorkflowTaskTombstoneArchiveBatch
impl Send for WorkflowTaskTombstoneArchiveBatch
impl Sync for WorkflowTaskTombstoneArchiveBatch
impl Unpin for WorkflowTaskTombstoneArchiveBatch
impl UnsafeUnpin for WorkflowTaskTombstoneArchiveBatch
impl UnwindSafe for WorkflowTaskTombstoneArchiveBatch
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