Trait tk_pool::config::NewErrorLog
[−]
[src]
pub trait NewErrorLog<C, S> {
type ErrorLog: ErrorLog<ConnectionError = C, SinkError = S>;
fn construct(self) -> Self::ErrorLog;
}A constructor for error log
Associated Types
Required Methods
Implementors
impl<C: Display, S: Display> NewErrorLog<C, S> for WarnLogger type ErrorLog = WarnLoggerInstance<C, S>;