pub enum BreakerDelta {
Success(i64),
Failure(i64),
}
Expand description
The number of successes or failures to increment the breaker by.
Variants§
Auto Trait Implementations§
impl Freeze for BreakerDelta
impl RefUnwindSafe for BreakerDelta
impl Send for BreakerDelta
impl Sync for BreakerDelta
impl Unpin for BreakerDelta
impl UnwindSafe for BreakerDelta
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