pub trait HasExportConfig {
    fn export_config(&mut self) -> &mut ExportConfig;
}
Expand description

Provide access to the export config field within the exporter builders.

Required Methods

Return a mutable reference to the export config within the exporter builders.

Implementors