Emit

Trait Emit 

Source
pub trait Emit<T>: Sealed {
    // Required method
    fn emit(self) -> Option<T>;
}
Expand description

Extension trait for the emit method.

Required Methods§

Source

fn emit(self) -> Option<T>

Method syntax for emit.

Implementations on Foreign Types§

Source§

impl<T> Emit<T> for Result<T, Report>

Source§

fn emit(self) -> Option<T>

Implementors§