pub trait MonoComposition<'a, B, C, D>where
Self: Sized,{
// Provided method
fn CP<Mono2>(self, m2: Mono2) -> Box<dyn Fn(B) -> D + 'a>
where Self: Fn(C) -> D + 'a,
Mono2: Fn(B) -> C + 'a { ... }
}Provided 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.