logo
pub trait ExportError: 'static + Error + Send + Sync {
    fn exporter_name(&self) -> &'static str;
}
Expand description

Marker trait for errors returned by exporters

Required Methods

The name of exporter that returned this error

Implementors