pub struct DurableBackgroundSubagentDeliveryClaim {
pub claim_id: String,
pub continuation_run_id: Option<RunId>,
pub deadline: DateTime<Utc>,
}Expand description
Atomic durable delivery claim.
Fields§
§claim_id: StringStable consumer-generated claim identity.
continuation_run_id: Option<RunId>Optional parent continuation admitted under this claim.
deadline: DateTime<Utc>Absolute claim expiry.
Trait Implementations§
Source§impl Clone for DurableBackgroundSubagentDeliveryClaim
impl Clone for DurableBackgroundSubagentDeliveryClaim
Source§fn clone(&self) -> DurableBackgroundSubagentDeliveryClaim
fn clone(&self) -> DurableBackgroundSubagentDeliveryClaim
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<'de> Deserialize<'de> for DurableBackgroundSubagentDeliveryClaim
impl<'de> Deserialize<'de> for DurableBackgroundSubagentDeliveryClaim
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 DurableBackgroundSubagentDeliveryClaim
impl StructuralPartialEq for DurableBackgroundSubagentDeliveryClaim
Auto Trait Implementations§
impl Freeze for DurableBackgroundSubagentDeliveryClaim
impl RefUnwindSafe for DurableBackgroundSubagentDeliveryClaim
impl Send for DurableBackgroundSubagentDeliveryClaim
impl Sync for DurableBackgroundSubagentDeliveryClaim
impl Unpin for DurableBackgroundSubagentDeliveryClaim
impl UnsafeUnpin for DurableBackgroundSubagentDeliveryClaim
impl UnwindSafe for DurableBackgroundSubagentDeliveryClaim
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