pub enum RunEndPolicy {
ContinueAfterLimitsHit,
AutoSealOnLimitsHit,
}Expand description
Policy for bounded activation run completion.
Variants§
ContinueAfterLimitsHit
Keep cheap-dropping after limits are hit until manual disarm or shutdown.
AutoSealOnLimitsHit
On first transition to limits_hit, stop admissions and seal/finalize the run.
Trait Implementations§
Source§impl Clone for RunEndPolicy
impl Clone for RunEndPolicy
Source§fn clone(&self) -> RunEndPolicy
fn clone(&self) -> RunEndPolicy
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 RunEndPolicy
impl Debug for RunEndPolicy
Source§impl PartialEq for RunEndPolicy
impl PartialEq for RunEndPolicy
impl Copy for RunEndPolicy
impl Eq for RunEndPolicy
impl StructuralPartialEq for RunEndPolicy
Auto Trait Implementations§
impl Freeze for RunEndPolicy
impl RefUnwindSafe for RunEndPolicy
impl Send for RunEndPolicy
impl Sync for RunEndPolicy
impl Unpin for RunEndPolicy
impl UnsafeUnpin for RunEndPolicy
impl UnwindSafe for RunEndPolicy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.