pub trait ErrorLogging {
type ResultType;
// Required method
fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType;
}Required Associated Types§
type ResultType
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".