pub trait HasHttpConfig {
// Required method
fn http_client_config(&mut self) -> &mut HttpConfig;
}
Available on crate features
http-proto
or http-json
only.Expand description
Expose interface for modifying builder config.
Required Methods§
Sourcefn http_client_config(&mut self) -> &mut HttpConfig
fn http_client_config(&mut self) -> &mut HttpConfig
Return a mutable reference to the config within the exporter builders.
Implementors§
impl HasHttpConfig for HttpExporterBuilder
Expose interface for modifying builder config.