pub struct RunId(/* private fields */);Expand description
Unique identifier for a run instance.
RunId derives Ord/PartialOrd because the engine’s selection algorithm
uses RunId ordering as a deterministic tie-breaker when priority and creation
time are equal. TaskId and AttemptId do not need ordering semantics.
Implementations§
Trait Implementations§
Source§impl Ord for RunId
impl Ord for RunId
Source§impl PartialOrd for RunId
impl PartialOrd for RunId
impl Copy for RunId
impl Eq for RunId
impl StructuralPartialEq for RunId
Auto Trait Implementations§
impl Freeze for RunId
impl RefUnwindSafe for RunId
impl Send for RunId
impl Sync for RunId
impl Unpin for RunId
impl UnsafeUnpin for RunId
impl UnwindSafe for RunId
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