Skip to main content

ResultSink

Trait ResultSink 

Source
pub trait ResultSink {
    // Required method
    fn write_report(&self, report: &Report) -> Result<(), Error>;
}
Expand description

Minimal trait for persisting a speed‑test report.

Required Methods§

Source

fn write_report(&self, report: &Report) -> Result<(), Error>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§