mid-idpool 1.0.0

Common id pool implementations for the `middleware` protocol users
Documentation
1
2
3
4
5
6
7
8
use integral_enum::IntegralEnum;
use thiserror::Error;

#[derive(Error, IntegralEnum)]
pub enum IdRequestError {
    #[error("Ran out of identifiers")]
    Exceeded,
}