RKTK API Docs RKTK Home Repo

Trait ReporterDriverBuilder

Source
pub trait ReporterDriverBuilder {
    type Output: ReporterDriver;
    type Error: MaybeFormat;

    // Required method
    async fn build(
        self,
    ) -> Result<(Self::Output, impl Future<Output = ()> + 'static), Self::Error>;
}

Required Associated Types§

Source

type Output: ReporterDriver

Source

type Error: MaybeFormat

Required Methods§

Source

async fn build( self, ) -> Result<(Self::Output, impl Future<Output = ()> + 'static), Self::Error>

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§