pub enum Decision {
Proceed,
ShouldDefer,
}Expand description
Outcome of a successful charge() call.
Variants§
Proceed
Running elapsed is under the soft budget - continue.
ShouldDefer
Running elapsed exceeds the soft budget but is under the hard
wall. Caller should .defer() the remaining tail stages.
Trait Implementations§
impl Copy for Decision
impl Eq for Decision
impl StructuralPartialEq for Decision
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl Send for Decision
impl Sync for Decision
impl Unpin for Decision
impl UnsafeUnpin for Decision
impl UnwindSafe for Decision
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