pub trait Tap0: Sized + Tap0Ref {
// Provided method
fn tap0<M, F>(self, f: F) -> impl FnOnce() -> Self
where F: Tap0Fn<Self, M> { ... }
}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.