pub struct WorkflowTaskTombstoneExport {
pub tenant_id: WorkflowTenantId,
pub through: WorkflowTaskTombstoneCursor,
pub receipt: WorkflowTaskTombstoneExportReceipt,
pub confirmed_by: WorkerId,
pub confirmed_at_ms: u64,
}Expand description
Monotonic confirmation that an external archive accepted a tenant prefix.
Fields§
§tenant_id: WorkflowTenantIdTenant whose tombstone prefix was exported.
through: WorkflowTaskTombstoneCursorGreatest global tombstone cursor confirmed by the archive.
receipt: WorkflowTaskTombstoneExportReceiptOpaque archive receipt.
confirmed_by: WorkerIdPrincipal confirming the archive response.
confirmed_at_ms: u64Store-authoritative confirmation time.
Trait Implementations§
Source§impl Clone for WorkflowTaskTombstoneExport
impl Clone for WorkflowTaskTombstoneExport
Source§fn clone(&self) -> WorkflowTaskTombstoneExport
fn clone(&self) -> WorkflowTaskTombstoneExport
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 WorkflowTaskTombstoneExport
impl Debug for WorkflowTaskTombstoneExport
impl Eq for WorkflowTaskTombstoneExport
impl StructuralPartialEq for WorkflowTaskTombstoneExport
Auto Trait Implementations§
impl Freeze for WorkflowTaskTombstoneExport
impl RefUnwindSafe for WorkflowTaskTombstoneExport
impl Send for WorkflowTaskTombstoneExport
impl Sync for WorkflowTaskTombstoneExport
impl Unpin for WorkflowTaskTombstoneExport
impl UnsafeUnpin for WorkflowTaskTombstoneExport
impl UnwindSafe for WorkflowTaskTombstoneExport
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