pub trait DuoAppose<'a, A, B, C>where
Self: Sized,{
// Provided method
fn AP<Mono>(self, m: Mono) -> Box<dyn Fn(A, A) -> C + 'a>
where Self: Fn(B, B) -> C + 'a,
Mono: Fn(A) -> B + '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.