pub trait ErrorLogging {
type ResultType;
// Required method
fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType;
}pub trait ErrorLogging {
type ResultType;
// Required method
fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType;
}