[][src]Trait opentelemetry::sdk::export::metrics::ExportKindFor

pub trait ExportKindFor: Debug {
    pub fn export_kind_for(&self, descriptor: &Descriptor) -> ExportKind;
}
This is supported on crate feature metrics only.

ExportKindSelector is a sub-interface of Exporter used to indicate whether the Processor should compute Delta or Cumulative Aggregations.

Required methods

pub fn export_kind_for(&self, descriptor: &Descriptor) -> ExportKind[src]

Determines the correct ExportKind that should be used when exporting data for the given metric instrument.

Loading content...

Implementors

impl ExportKindFor for ExportKindSelector[src]

impl<W> ExportKindFor for StdoutExporter<W> where
    W: Debug + Write
[src]

Loading content...