[][src]Trait beefeater::ops::FetchSub

pub trait FetchSub<Lhs, Rhs> {
    fn fetch_sub(&self, val: Rhs) -> Lhs;
}

Required methods

fn fetch_sub(&self, val: Rhs) -> Lhs

Subtract from the current value, returning the previous value.

Loading content...

Implementors

impl<Lhs: Copy, Rhs> FetchSub<Lhs, Rhs> for Beefeater<Lhs> where
    Lhs: SubAssign<Rhs>, 
[src]

Loading content...