pub trait Tap2: Sized + Tap2Ref {
// Provided method
fn tap2<M, F, A1, A2>(self, f: F) -> impl FnOnce(A1, A2) -> Self
where F: Tap2Fn<Self, A1, A2, M> { ... }
}Expand description
Adds by-value tap helpers for arity 2 (requires Self: Sized).
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.