pub trait ConnectionManager {
    type ConnectionPool: ConnectionPool;
    type NewConnectionConfig: NewConnectionConfig;

    // Required methods
    fn new_connection_pool(&self) -> Self::ConnectionPool;
    fn new_connection_config(&self) -> Self::NewConnectionConfig;
    fn get_port_offset(&self) -> u16;
}

Required Associated Types§

Required Methods§

Implementors§