pub trait RetLog<Type, Agent, Index>where
Agent: LogAgent,{
// Required method
fn ret_log(self, item: impl Fn() -> Agent::Item) -> Type;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.