pub trait TicketerFactory:
Debug
+ Send
+ Sync {
// Required methods
fn ticketer(&self) -> Result<Arc<dyn TicketProducer>, Error>;
fn fips(&self) -> bool;
}Expand description
A factory that builds TicketProducers.
These can be used in ServerConfig::ticketer to enable stateless resumption.