NewErrorLog

Trait NewErrorLog 

Source
pub trait NewErrorLog<C, S> {
    type ErrorLog: ErrorLog<ConnectionError = C, SinkError = S>;

    // Required method
    fn construct(self) -> Self::ErrorLog;
}
Expand description

A constructor for error log

Required Associated Types§

Source

type ErrorLog: ErrorLog<ConnectionError = C, SinkError = S>

Required Methods§

Source

fn construct(self) -> Self::ErrorLog

Implementors§