pub struct CreatePendingWaitpointArgs {
pub execution_id: ExecutionId,
pub lease_id: LeaseId,
pub lease_epoch: LeaseEpoch,
pub attempt_index: AttemptIndex,
pub attempt_id: AttemptId,
pub waitpoint_id: WaitpointId,
pub waitpoint_key: String,
pub expires_in_ms: u64,
}Fields§
§execution_id: ExecutionId§lease_id: LeaseId§lease_epoch: LeaseEpoch§attempt_index: AttemptIndex§attempt_id: AttemptId§waitpoint_id: WaitpointId§waitpoint_key: String§expires_in_ms: u64Short expiry for the pending waitpoint (ms).
Trait Implementations§
Source§impl Clone for CreatePendingWaitpointArgs
impl Clone for CreatePendingWaitpointArgs
Source§fn clone(&self) -> CreatePendingWaitpointArgs
fn clone(&self) -> CreatePendingWaitpointArgs
Returns a duplicate of the value. Read more
1.0.0 · 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 CreatePendingWaitpointArgs
impl Debug for CreatePendingWaitpointArgs
Source§impl<'de> Deserialize<'de> for CreatePendingWaitpointArgs
impl<'de> Deserialize<'de> for CreatePendingWaitpointArgs
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 Freeze for CreatePendingWaitpointArgs
impl RefUnwindSafe for CreatePendingWaitpointArgs
impl Send for CreatePendingWaitpointArgs
impl Sync for CreatePendingWaitpointArgs
impl Unpin for CreatePendingWaitpointArgs
impl UnsafeUnpin for CreatePendingWaitpointArgs
impl UnwindSafe for CreatePendingWaitpointArgs
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