fn from_config()

in client/src/client.rs [87:98]


    fn from_config(config: Config) -> Result<Self, ConfigError> {
        let http_client = reqwest::Client::builder()
            .connect_timeout(config.connection_timeout)
            .timeout(config.request_timeout)
            .pool_idle_timeout(DEFAULT_POOL_IDLE_TIMEOUT)
            .build()?;
        let handle = HandleRef::new(Handle {
            config,
            http_client,
        });
        Ok(Self { handle })
    }