pub trait IdentityHandlerFactory<I> {
    type Filter: IdentityHandler<I>;

    fn spawn(&self) -> Self::Filter;
}

Required Associated Types

Required Methods

Implementors