pub trait IdentityHandler<I>: Debug {
    type Input: Clone + Debug;

    fn process(&self, id: Self::Input, backend: Backend) -> I;
    fn free(&self, id: I);
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors