applyFrom method
Implementation
void applyFrom(PgPoolSettings other) {
concurrency = other.concurrency;
connectTimeout = other.connectTimeout;
queryTimeout = other.queryTimeout;
idleTestThreshold = other.idleTestThreshold;
maxConnectionAge = other.maxConnectionAge;
maxSessionUse = other.maxSessionUse;
maxErrorCount = other.maxErrorCount;
maxQueryCount = other.maxQueryCount;
retryOptions = other.retryOptions;
}