pub struct DefinitelyNotSubmittedRetryAuthority<R>where
R: DeviceRuntime,{ /* private fields */ }Expand description
The sole retry edge after a device runtime proves that submit did not happen. It owns the exact invocation, topology and work evidence; dropping it retires the ledger tombstone and cannot be relabeled as retryable later.
Implementations§
Source§impl<R> DefinitelyNotSubmittedRetryAuthority<R>where
R: DeviceRuntime,
impl<R> DefinitelyNotSubmittedRetryAuthority<R>where
R: DeviceRuntime,
pub const fn prior_attempt(&self) -> BatchInvocationId
pub fn topology_fingerprint(&self) -> &str
pub fn work_fingerprint(&self) -> &str
pub fn retry(self) -> Result<InvocationResourceLease<R>, VNextError>
Trait Implementations§
Source§impl<R> Debug for DefinitelyNotSubmittedRetryAuthority<R>where
R: DeviceRuntime,
impl<R> Debug for DefinitelyNotSubmittedRetryAuthority<R>where
R: DeviceRuntime,
Source§impl<R: DeviceRuntime> DispatchRetryAuthority for DefinitelyNotSubmittedRetryAuthority<R>
impl<R: DeviceRuntime> DispatchRetryAuthority for DefinitelyNotSubmittedRetryAuthority<R>
fn prior_attempt(&self) -> BatchInvocationId
Auto Trait Implementations§
impl<R> !RefUnwindSafe for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> !UnwindSafe for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> Freeze for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> Send for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> Sync for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> Unpin for DefinitelyNotSubmittedRetryAuthority<R>
impl<R> UnsafeUnpin for DefinitelyNotSubmittedRetryAuthority<R>
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