pub struct ClaimedExecution {
pub execution_id: ExecutionId,
pub lease_id: LeaseId,
pub lease_epoch: LeaseEpoch,
pub attempt_index: AttemptIndex,
pub attempt_id: AttemptId,
pub attempt_type: AttemptType,
pub lease_expires_at: TimestampMs,
}Fields§
§execution_id: ExecutionId§lease_id: LeaseId§lease_epoch: LeaseEpoch§attempt_index: AttemptIndex§attempt_id: AttemptId§attempt_type: AttemptType§lease_expires_at: TimestampMsTrait Implementations§
Source§impl Clone for ClaimedExecution
impl Clone for ClaimedExecution
Source§fn clone(&self) -> ClaimedExecution
fn clone(&self) -> ClaimedExecution
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 ClaimedExecution
impl Debug for ClaimedExecution
Source§impl<'de> Deserialize<'de> for ClaimedExecution
impl<'de> Deserialize<'de> for ClaimedExecution
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
Source§impl PartialEq for ClaimedExecution
impl PartialEq for ClaimedExecution
Source§impl Serialize for ClaimedExecution
impl Serialize for ClaimedExecution
impl Eq for ClaimedExecution
impl StructuralPartialEq for ClaimedExecution
Auto Trait Implementations§
impl Freeze for ClaimedExecution
impl RefUnwindSafe for ClaimedExecution
impl Send for ClaimedExecution
impl Sync for ClaimedExecution
impl Unpin for ClaimedExecution
impl UnsafeUnpin for ClaimedExecution
impl UnwindSafe for ClaimedExecution
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