pub struct RetryPromotionResult { /* private fields */ }Expand description
Result of promoting RetryWait runs to Ready.
Implementations§
Source§impl RetryPromotionResult
impl RetryPromotionResult
Sourcepub fn promoted(&self) -> &[RunInstance]
pub fn promoted(&self) -> &[RunInstance]
Returns the runs that were promoted from RetryWait to Ready.
Sourcepub fn still_waiting(&self) -> &[RunInstance]
pub fn still_waiting(&self) -> &[RunInstance]
Returns the runs that remain in RetryWait state.
Trait Implementations§
Source§impl Clone for RetryPromotionResult
impl Clone for RetryPromotionResult
Source§fn clone(&self) -> RetryPromotionResult
fn clone(&self) -> RetryPromotionResult
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 RetryPromotionResult
impl Debug for RetryPromotionResult
Source§impl PartialEq for RetryPromotionResult
impl PartialEq for RetryPromotionResult
impl Eq for RetryPromotionResult
impl StructuralPartialEq for RetryPromotionResult
Auto Trait Implementations§
impl Freeze for RetryPromotionResult
impl RefUnwindSafe for RetryPromotionResult
impl Send for RetryPromotionResult
impl Sync for RetryPromotionResult
impl Unpin for RetryPromotionResult
impl UnsafeUnpin for RetryPromotionResult
impl UnwindSafe for RetryPromotionResult
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