pub trait LogExt { // Required method fn log_to(self, capture: &Capture); }
Extension trait that routes a Log entry into a Capture handle in-place of the global engine.
Log
Capture
Push self into capture.
self
capture
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".