Trait TelemetryReportCreator

Source
pub trait TelemetryReportCreator {
    // Required methods
    fn create_report<'life0, 'async_trait>(
        &'life0 self,
        tracking_id: String,
        session_id: String,
        up_time: u64,
    ) -> Pin<Box<dyn Future<Output = Result<impl TelemetryToProtobuf, TelemetryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn report_type(&self) -> &str;
}

Required Methods§

Source

fn create_report<'life0, 'async_trait>( &'life0 self, tracking_id: String, session_id: String, up_time: u64, ) -> Pin<Box<dyn Future<Output = Result<impl TelemetryToProtobuf, TelemetryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn report_type(&self) -> &str

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§