ReportResult

Trait ReportResult 

Source
pub trait ReportResult {
    // Required method
    async fn report(self, ctx: &mut ExecContext<'_>);
}

Required Methods§

Source

async fn report(self, ctx: &mut ExecContext<'_>)

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.

Implementations on Foreign Types§

Source§

impl ReportResult for bool

Source§

async fn report(self, ctx: &mut ExecContext<'_>)

Source§

impl ReportResult for ()

Source§

async fn report(self, _ctx: &mut ExecContext<'_>)

Source§

impl<T: ReportResult> ReportResult for Option<T>

Source§

async fn report(self, ctx: &mut ExecContext<'_>)

Source§

impl<T: ReportResult, E: ReportResult> ReportResult for Result<T, E>

Source§

async fn report(self, ctx: &mut ExecContext<'_>)

Implementors§