pub trait UnwrapLog<T> {
// Required method
fn unwrap_log(
self,
file: &str,
line: u32,
module_path: &str,
expression: &str,
) -> T;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".