Trait monotone::MonotonicCounter [] [src]

pub trait MonotonicCounter {
    type Error;
    fn get_value(&self) -> Result<u64, Self::Error>;
    fn next_value(&self) -> Result<u64, Self::Error>;
}

Associated Types

Required Methods

Implementors