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§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".