Trait bigerror::ToReport

source ·
pub trait ToReport<T> {
    // Required method
    fn to_report(self) -> Report<T>;

    // Provided method
    fn change_context<C: Context>(self, context: C) -> Report<C>
       where Self: Sized { ... }
}

Required Methods§

source

fn to_report(self) -> Report<T>

Provided Methods§

source

fn change_context<C: Context>(self, context: C) -> Report<C>
where Self: Sized,

Implementors§

source§

impl<C> ToReport<C> for Report<C>